﻿body {
    color: white;
    background-color: black;
    background-image: url('/images/grid.png');
    width: 100%;
    height: 100%;
   	font-family: Verdana, Helvetica, Arial, sans-serif;
   	font-size: 14pt;
   	font-weight: normal;
   	letter-spacing: normal;
	text-transform: none;
   	word-spacing: normal;
   	text-align: left;
   	margin: 0px;
	padding: 0px;
}

a:link, a:visited, a:active {text-decoration: none; color: blue;}
a:hover, a:visited:hover    {text-decoration: underline; color: grey;}
a.Menu { color: white; }
a.Menu:hover { color: black; text-decoration: none;}

#core {
    width: 1200px;
    height: auto;
    background-image: url('/images/header.png');
    background-position: top center;
    background-repeat: no-repeat;
}

#header {
    width: 1464px;
    height: 150px;
}

#menu {
    width: 100%;
    height: 24px;
    padding-top: 6px;
    color: white;
    font-family: Arial, Helvetica;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    background-image: url('/images/trans75.png');
    border-radius: 6px 6px 0px 0px;
}

.menuitem {
    padding: 4px;
}
.menuitem:hover {
    background-color: white;
    border-radius: 6px;
}

.flex {
    display: flex;
}
.flex-row {
    flex-direction: row;
}
.flex-grow {
    flex-grow: 1;
}

.padded {
    padding: 6px;
}

#content {
    width: 1200px;
    min-height: 400px;
    height: auto;
    /*padding: 6px;*/
    color: white;
    background-color: black;
}

#footer {
    width: 100%;
    height: 22px;
    padding-top: 6px;
    
    font-size: 10pt;
    color: white;
    text-align: center;
    border-top: 1px solid #333;
    border-radius: 0px 0px 6px 6px;
    background-color: rgba(0,0,0,.75);
}

.products {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px
}

.product-link {
    display: flex;

    /*flex-grow: 1;*/
    height: 400px;
    width: auto;
    min-width: 400px;
    /*border-radius: 12px;*/
    background-color: darkblue;
    /*margin: 6px;*/
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    border-radius: 6px;
    border: 2px solid rgba(255,255,255,.25);
    cursor: pointer;
}

    .product-link.m3 {
        background-image: url(/images/m3-banner.jpg);
    }
    .product-link.horizons {
        background-image: url(/images/horizons-banner.jpg);
    }
    .product-link.lucky-putt {
        background-image: url(/images/lp-banner.jpg);
    }
    .product-link.hyper-axe {
        background-image: url(/images/ha-banner.jpg);
    }