:root {
    --stYellow: #c4c400;
    --stPink: #690839;
}
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #f2f2f2;
    scroll-behavior: smooth;
}

header {
    background-image: url("../images/hamilton.jpg");
    background-position: center;
    background-size: cover;
    height: 500px;
}
header .row {
    position: relative;
    top: 114px;
}
header h1 {
    color: white;
    font-size: 60px;
    font-family: 'Righteous', cursive;
    width: fit-content;
    margin-bottom: 0;
}
header p {
    border-top: 2px solid white;
    color: white;
    font-weight: bolder;
    font-size: 22px;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 3px;
}


.circle {
    width: 20vw;
    height: 20vw;
    background: rgb(255,255,255);
    border-radius: 50%;
    position: absolute;
    top: 700px;
    opacity: 0.2;
}
.circle1 {
    background: linear-gradient(270deg, rgba(255,255,255,1) 0%, rgb(255, 124, 197) 100%);
    left: 0vw;
}
.circle2 {
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgb(255, 124, 197) 100%);
    right: 0vw;
}

/* main styles */
main {
    background: rgb(255,255,255);
    background: linear-gradient(130deg, rgba(255,255,255,1) 0%, rgb(255, 124, 197) 80%, rgb(255, 124, 197) 100%);
    width: 100%;
    height: 700px;
}
form {
    margin: auto;
    width: 50vw;
    min-width: 300px;
    /*height: 85vh;*/
    background-color: white;
    border-radius: 1em;
    position: absolute;
    top: 564px;
    left: 25vw;
    opacity: 0.75;
    backdrop-filter: blur(16px);
    padding: 1em;
}
form p {
    margin-left: 20px;
    font-weight: bold;
    color: black;
}
form input {
    border-color: #1a1a1a;
}
form input::placeholder {
    color: black;
    font-weight: bold;
}
#shop-contact-container {
    text-align: center;
}
hr {
    margin: 20px;
}
#shop-contact-container div input {
    padding: 4px;
    font-size: 16px;
}
table {
    width: 100%;
    font-size: 20px;
}
th, td {
    width: 33%;
    text-align: center;
    padding: 16px 0;
}
#shop-submit {
    margin-left: 20px;
    color: white;
    background-color: var(--stPink);
    border: 1px var(--stPink) solid;
    border-radius: 0.25em;
    font-size: 20px;
    padding: 0.5em 1em;
}
#shop-submit:disabled {
    color: white;
    background-color: grey !important;
    border: 1px black solid;
}

/* shop image */
#shopImgModal {
    display: none;
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}
#item-image {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}
.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* media quries */

@media only screen and (max-width: 1000px) {
    #silvertone-logo {
        height: 200px;
    }
}

@media only screen and (max-width: 800px) {
    #silvertone-logo {
        height: 150px;
    }
    form {
        width: 80vw;
        left: 10vw;
    }
}

@media only screen and (max-width: 719px) {
    header .row {
        top: 0;
    }
    main {
        height: 750px;
    }
}

@media only screen and (max-width: 500px) {
    table {
        font-size: 16px;
    }
    table input {
        width: 50px;
    }
}

@media only screen and (max-width: 400px) {
    form {
        width: 100vw;
        left: 0vw;
    }
}