* {
    margin: 0;
    padding: 0;
    color: #afeafd;
    font-family: 'Tourney', Verdana, Geneva, Tahoma, sans-serif;
}

/* sets the background for the entire page */
html {
    background-color: black;
}


/* this is the thin italic font */
@font-face {
    font-family: 'Tourney';
    src: url('Tourney/static/Tourney-ThinItalic.ttf')format('truetype');
}

/* this is the bold font */
@font-face {
    font-family: 'Tourney-Bold';
    src: url(/Tourney/static/Tourney_Condensed-Bold.ttf);
}

/* this gives all images a border radius styling */
img {
    border-radius: 50px;
}

/* this takes off the hyperlink aesthic on the nav bar while also giving space in between the links */
.navbar a {
    text-decoration: none;
    color: #afeafd;
    list-style: none;
    display: inline-block;
    font-size: 25px;
}

/* this puts the nav bar in a row */
.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    transform: translate(0, 5vh);
}

/* this moves the logo on the left side of the page to the left */
#motion-logo {
    position: absolute;
    left: 150px;
}

/* this moves the nav links on the right side of the page to the right */
#links {
    position: absolute;
    right: 150px;
}

/* this pushes the form down from the top of the page */
.contact-form {
    position: relative;
    top: 20vh;
}

/* this is for the contact us header */
#contactus-header {
    position: relative;
    text-align: center;
    top: 30vh;
    font-size: 60px;
}

/* this gives the contact form a margin to keep it from getting too big while putting it in a column */
main form {
    display: flex;
    flex-direction: column;
    margin: 30% 25%;
}

/* this sets the border radius and spacing in between all the forms while adjusting the font size for all the labels */
form label,
input,
textarea {
    margin: 3% 10%;
    font-size: 25px;
    border-radius: 30px;
    border: none;
    padding-left: 20px;
}

/* this helps push the text down from the top of the textarea */
textarea {
    padding-top: 20px;
}

/* this sets the font size for when you type in the form */
#name,
#email,
#message {
    font-family: 'Tourney-Bold';
    color: black;
    font-size: 25px;
}

/* this is for the shop now button */
#submit {
    background-color: #f0403d;
    border: none;
    padding: 3% 2%;
    border-radius: 30px;
    cursor: pointer;
    font-size: 25px;
    font-family: 'Tourney-Bold';
    margin: 5% 30%;
}

/* this is for the footer links, it aligns them all in one row */
footer p {
    display: inline-block;
    font-size: 25px;
}

/* takes off that undeline hyperlink look on the privacy page */
footer a {
    text-decoration: none;
}

@media screen and (min-width: 375px) and (max-width: 768px) {

    /* this spaces out the three lines in the hamburger menu and organizes them into a column */
    .hamburgerMenu {
        display: flex;
        flex-direction: column;
        gap: 5px;

    }

    /* this gives each line in the hamburger menu a color, height, and width */
    #menuLine {
        background-color: white;
        width: 30px;
        height: 3px;
        border-radius: 10px;
    }

    .links {
        display: none;
    }

    /* this will be toggled through a click event for the hamburger menu. It shows the navigation links for mobile and smaller tablet screens*/
    .show {
        display: flex;
        flex-direction: column;
        align-items: center;
        list-style-type: none;
        font-size: 20px;
        row-gap: 10px;
        padding: 5% 0;
    }
}

@media screen and (min-width: 375px) and (max-width: 425px),
(max-width: 757px) {

    /* this hides the contact header */
    #contactus-header {
        opacity: 0;
    }

    /* this moves the nav links on the right side of the page to the right */
    #links {
        display: flex;
        flex-direction: column;
    }

    /* this sets the border radius and spacing in between all the forms while adjusting the font size for all the labels */
    form label,
    input,
    textarea {
        margin: 3% 10%;
        font-size: 20px;
        border-radius: 30px;
        border: none;
        padding-left: 20px;
    }

    /* this helps push the text down from the top of the textarea */
    textarea {
        padding-top: 20px;
    }

    /* this sets the font size for when you type in the form */
    #name,
    #email,
    #message {
        font-family: 'Tourney-Bold';
        color: black;
        font-size: 15px;
    }

    /* this is for the submit button */
    #submit {
        background-color: #f0403d;
        border: none;
        padding: 3% 2%;
        border-radius: 30px;
        font-size: 25px;
        font-family: 'Tourney-Bold';
        margin: 5% 10%;
    }

    /* this is for the footer links, it aligns them all in one row */
    footer {
        display: inline-block;
        margin-top: 15vh;
    }

    /* sets the font size for the entire footer */
    footer p {
        font-size: 15px;
    }
}