:root{
    --bg-color: rgb(26, 26, 26);
    --text-color: white;
    --light-text: rgb(255, 212, 133);
    --dark-text: grey;
    --font-serif: "Times New Roman", serif;
    --font-sans: Arial, sans-serif;
}

body{
    background-color: var(--bg-color);
    opacity: 100% !important;
    color: var(--text-color);
    font-family: var(--font-sans);
    font-size: 18px;
}

h2{
    font-weight: 100;
    letter-spacing: 0.2vw;
    font-size: 2.6 vh;
    color: var(--light-text);
}



header{
    background-color: rgb(34, 34, 34);

}
.header-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10%;
    margin-left: 2vw;
    margin-right: 4vw;
}

header h1{
    justify-self: center;
    letter-spacing: 0.3vw;
    font-family: sans-serif;
    font-weight: 100;
}


@media (max-width:480px){
    .header-container{
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
    justify-self: center;
    }

    nav li{
        margin-left: 0;
    }
    
    header h1{
        font-size: 6vw;
    }
}


nav ul{
    display: flex;
    margin-top: 4vh;
}


nav li{
    margin-left: 6vw;
    list-style-type: none;
    text-transform: uppercase;
    font-family: sans-serif;
}




main{
    display: grid;
    place-items: center;
    padding: 5vw;
}



/* form{
    display: grid;
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: 800px;
} */

form{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    max-width: 1000px;
    gap: 15px;
}



section{
    background-color: #232323;
    display: grid;
    place-items: center;
    padding: 3vw;
    border-radius: 8px;
}


.must-select select{
    height: 3vh;
}


/* Adds a thin line under every input, select, and label */
label,  select {
    width: 100%;
    border-bottom: 1px solid #ccc;
    margin-bottom: 2vh; 
    padding-bottom: 2px; 
    box-sizing: border-box;
}

input{
    width: 10%;
    margin-right: 3vw;
    margin-left: 3vw;
}


label {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0; /* thin line */
  cursor: pointer;
}

button[type="submit"]{
    background-color: #54c954;
    width: 60%;
    height: 30%;
    font-size: 4vh;
    font-family: var(--font-sans);
    text-transform: uppercase;
    border-radius: 15px;
}


textarea{
    width: 25vw;
    height: 12vh;
}


.text-box input{
    width: 20vw;
    height: 3vh;
}



footer{
    height: 8vh;
    width: 100%;
    display: grid;
    justify-content: left;
    align-items: center;
    border-top: #e0e0e0;
    border-top-width: 4px;
    background-color: #232323;
}

footer ul{
    display: flex !important;
    margin-top: 4vh;
}


footer li{
    margin-left: 6vw;
    list-style-type: none;
    text-transform: uppercase;
    font-family: sans-serif;
}

footer a{
    text-decoration: none;
    color: var(--dark-text);
}
