*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #EEEEEE;
    font-family: "Lato",sans-serif;
}
#header{
    position: fixed;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 5rem;
    margin-top: -5rem;
}
#header img{
    margin: auto 0;
    height:40%;
}
#nav-bar{
    display: flex;
    width: 40%;
    justify-content: space-around;
    align-items: center;
}
.nav-link{
    text-decoration: none;
    color: #000;
    font-size: 1rem;
}
h2{
    font-weight: 550;
    text-align: center;
    margin-top: 5rem;
}
#form input{
    display: block;
    margin: auto;
    border: none;
}
#form input[type="email"]{
    padding: 0.3rem 2rem;
    font-size: .9rem;
    background-color: #fff;
    border: 1px solid #000;
}
#form input[type="submit"]{
    background-color: #f1c40f;
    font-weight: 900;
    font-size: 1rem;
    padding: 0.5rem 1rem;
}
ul{
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    height: 25rem;
    max-width: fit-content;
    margin: 3rem auto;
    
}
li{
    display: grid;
    grid-template-columns: 0.1fr 0.9fr;
    grid-gap: 1rem;
    align-items: center;
    
}
li h3{
    font-weight: 550;
    font-size: 1.3rem;
}
i{
    color: #ff8c00;
    margin-left: 1rem;
}
#video{
    display: block;
    margin: 0 auto;
}
#prices{
    display: grid;
    grid-template-columns: repeat(3, 16rem);
    justify-content: center;
    grid-gap: 1rem;
    margin-top:5rem;
    margin-bottom:2rem;
}
.price{
    text-align: center;
    border: #000 solid 1px;
}
.price .name{
    font-weight: 350;
    background-color: lightgray;
    font-size: 1.3rem;
    padding: 0.5rem;
    margin-bottom: 2rem;
}
.price .amount{
    font-weight: 550;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}
.price .desc{
    font-weight: 350;
    margin-bottom: 1rem;
}
.price button{
    background-color: #f1c40f;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    cursor: pointer;
}
.price button:hover{
    background-color: #ff8c00;
}
#footer,#footer *{
    background-color: #dddddd;
}
#footer{
    text-align: right;
    height: 5rem;
    max-width: 60rem;
    margin: auto;
    margin-top: 5rem;
    padding: 1rem 0.5rem;
}
#footer a{
    text-decoration: none;
    color: #000;
    margin: 1rem;
    font-size: 1rem;
}
#footer p{
    font-size: 1rem;
    font-weight: 500;
    margin-top: 1rem;
}
@media(max-width:800px){
    #prices{
        grid-template-columns: repeat(1, 16rem);
    }
}
@media (max-width:650px){
    #nav-bar{
        flex-direction: column;
    }
}
@media (max-width:600px){
    #header{
        flex-direction: column;
        align-items: center;
        margin-top: -7rem;
        height: 7rem;
    }
    #header img{
        height: auto;
        width: 60%;
    }
    #nav-bar a{
        margin: 0.2rem;
    }
    h2{
        margin-top: 7rem;
    }

}
@media (max-width:550px){
    i{
        opacity: 0;
    }
    .text h3,.text p{
        text-align: center;
    }
    #video{
        width: 100%;
    }
}
