*{
    box-sizing: border-box;
}
body{
    background-color: black;
    margin: 0;
    font-family: sans-serif;
    color: #FFFFFF;
}
.grid-container {
    display: grid;
    grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 175px)) minmax(0px, 1fr);
    grid-auto-rows: minmax(50px, auto);
    background-color: black;
}
.header {
    background-color: #FFFFFF;
    background-repeat: no-repeat;
    grid-column-start: 2;
    grid-row-start: 1;
    width: 300px;
    height: 100px;
    position: relative;
    overflow: hidden;
}
header{
    grid-column-start: 2;
    background-image: url(../milestone6/images/preview-redirect.svg);
    background-position: left;
    background-repeat: no-repeat;
    width: 100px;
    height: auto;
}
nav{
    grid-column:5/9;
    grid-row:1/3;
    text-align: center;
    height: 130px;
}
ul{
    margin-left: 30px;
    padding: 30px;
    text-align: center;
    display: flex;
    list-style-type: none;
}
nav ul li{
    font-size: 1.5rem;
    padding: 20px;
    font-weight: bolder;
}
nav ul li a{
    color: rgba(225,225,225,0.5);
    text-decoration: underline;
    text-decoration-color: rgba(225,225,225,0.5);
}
a{
    text-decoration-line: none;
    color:#FFFFFF;
}
nav a:hover{
    color: #FFFFFF;
    text-decoration-color: blue;
    transition: color 0.8s;
}
.hero{
    grid-column:1/9;
    grid-row:3/10;
    text-align: center;
}
#homehero{
    background-image: url(../milestone6/images/webcode.jpeg);
    box-shadow: inset 0 0 0 1200px rgba(90, 113, 206, 0.5);
    background-size: 110%;
    height: 460px;
    background-repeat: no-repeat;
    background-position: 80% 30%;
}
.hero h2{
    position: absolute;
    top: 40%;
    right:50px;
    color: #FFFFFF;
    font-size: 50px;
    text-align: left;
}
#wrapper{
    grid-column:2/8;
    grid-row:10/19;
    text-align: center;
}
#wrapper h3{
    font-size: 30px;
    text-align: left;
    margin-bottom: 10px;
    margin-left: 0;
}
#wrapper p{
    font-size: 20px;
    text-align: left;
    margin:10px;
    margin-left: 0;
}
h3{
    grid-column: 2/7;
}
.level-choice{
    size: auto;
    margin-right: 50px;
    margin-left: 50px;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}
.Beginner{
    grid-column-start: 2;
}
.BeginnerLine{
    border-bottom: 3px solid #FFFFFF;
}
.Beginner, .HTML, .CSS {
    text-decoration: none;
    background-color: rgba(90, 113, 206, 0.5);
    padding: 20px;
    margin: 10px;
    width: auto;
    max-width: 250px;
    min-width: 200px;
    float: left;
}
.levelText{
    padding-top: 10px;
    padding-bottom: 10px;
}
.BottomText{
    padding-bottom: 10px;
}
.UtahTechStudent{
    text-decoration: none;
    background-color: rgba(90, 113, 206, 0.5);
    padding: 20px;
    margin-top: 30px;
}
.footer{
grid-column:1/9;
grid-row:19/20;
text-align: center;
background-color: rgba(234,169,117,0.5);
}
@media only screen and (max-width:935px){
    nav{
        grid-row:2/3;
        grid-column: 2/5;
        position: static;
    }
    #homehero{
        height: 400px;
    }
    .hero h2{
        position: absolute;
        grid-column-start: 4;
        grid-row-start: 5; 
        right:50px;
        color: #FFFFFF;
        font-size: 40px;
        text-align: left;
    }
    .level-choice {
        display: flex;
        flex-wrap: none;
    }
    .three-level-choice{
        size: auto;
        margin-right: 50px;
        margin-left: 50px;
        justify-content: space-around;
        flex-wrap: nowrap;
        text-align: center;
    }
    .Beginner, .HTML, .CSS {
        align-items:center;
        justify-content: center;
        width: auto;
        max-width: 200px;

    }
}
@media only screen and (max-width:768px){
    header{
        display: none;
    }
    nav{
        grid-row: auto;
        grid-column:3/9;
        width: 100%;
        padding-right: 20px;
    }
    #homehero{
        grid-row: 2/3;
        grid-column:5/8;
        height: auto;
    }
    .hero{
        display: none;
    }
    .homeheroSentence{
        display: none;
    }
    #wrapper{
        grid-row-start: 3;
        width: auto;
    }
    #wrapper .BottomText{
        display: none;
    }
}