@charset "utf-8";

/*

   Styles for the landing page
   Author: Kyle Snyder
   Date:   12/14/24

   Filename: landingpage.css

*/

html {
}


body {
    background-color: rgb(128, 128, 128);
    display: flex;
    text-align: center;
    height: 100%;
    width: 100%;
    margin: 0 auto;
}

div:first-of-type {
    grid-area: empty;
    width: 40%;
    height: 60%;
    border: 0px solid red;
    margin: auto;
}

div:first-of-type > div:first-of-type {
    margin: 80px 0 0 0;
}

video {
    width: 100%;
    height: 80%;
    background-color: black;
}

video:hover {
    filter:brightness(0.5);
}

div > div {
    display: block;
}

div:first-of-type > div:first-of-type,
div:first-of-type > div:nth-of-type(2),
div:first-of-type > div:nth-of-type(3) {
    width: 100%;
}


div:first-of-type > div:nth-of-type(2) {
    margin-top: 20px;
}

div:first-of-type > div:last-of-type {
    margin-bottom: 0px;
}

video {
    width: 100%;
    height: 90%;
    box-shadow: 0px 0px 200px black;
}

audio {
    margin-top: 0px;
    opacity: 0.5;
    height: 30px;
}

div:first-of-type > div:nth-last-of-type(2) > input {
    margin: 0px;
    background: rgb(0, 190, 9);
    color: black;
    font-family: Grenze;
    font-weight: bold;
    width: 25%;
    height: 40px;
    font-size: 2em;
}

div:first-of-type > a:last-of-type {
    margin: 10px;
    padding: 10px 15%;
    background: rgb(0, 190, 9);
    color: black;
    font-family: Grenze;
    font-weight: bold;
    width: 25%;
    height: 40px;
    font-size: 2em;
    border: 1px solid black;
}



div:first-of-type > a:hover {
    filter: drop-shadow(0px 0px 10px purple);
}

div:first-of-type > a > input:last-of-type  {
    margin-top: 10px;
    height: 50px;
    width: 50%;
}

div:first-of-type > div:nth-last-of-type(2) > input:first-of-type {
    width: 60%;
    margin: 0;
}

div:first-of-type > div:nth-last-of-type(2) > input:last-of-type {
    margin-bottom: 10px;
    height: 45px;
}

div:first-of-type > div:last-of-type input {
    margin: 10px;
}

div:first-of-type > div:last-of-type label {
    font-size: 1.5em;
    margin: 20px 0 20px 0;
    margin-left: 0;
}


@media only screen and (max-width:769px) {
    
    div:first-of-type {
        grid-area: empty;
        width: 70%;
        height: 80%;
        margin: auto;
    }

   
}

@media only screen and (max-width:479px) {
    
    nav.navlist ul li{
        font-size: 1.5em;
    }
}