* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: sans-serif;
}

body {
    background-color: #eee;
}

@media (max-width:1000px){
    body {
        background-color:violet; 
    }
}

#header {
    display: flex;
    justify-content: space-between;
    padding: 1.3rem;
    padding-top: 30px;
    pointer-events: fixed;
    width: 100%;
    position: fixed;
    width: 100%;
}

#header-logo {
    width: 50vw;
}

#header-img {
    justify-content: left;
    width: 100%;
    height: 100%;
    min-width: 100px;
    max-width: 340px;
}


#nav-bar {
    font-size: 1.2rem;
    
}


#nav-bar > ul {
    display: flex;
    justify-content: space-around;
    list-style-type: none;
}

#nav-bar > ul > li {
    padding: 0px 50px;
}

.nav-link {
    color: black;
    text-decoration: none;
    font-weight: 600;
}

#introduction {
    height: 100%;
    width: 100%;
    padding-top: 20px;
    text-align: center;
}

#introduction > h1 {
    font-weight: 600;
    line-height: 2;
    padding-top: 7%;
}

#form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    margin-top: 1rem;
}

#email {
    width: 100%;
    max-width: 300px;
    padding-top: 10px;
    border: 1px solid;
    background-color: white;
    padding: 15px;
    font-size: 15px;
}

#submit {
    width: 10%;
    padding: 8px;
    border-radius: 3px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 20px;
    background-color: #f1c40f;
    border-style: none;
}

#main-div {
    display: flex;
    flex-direction: row;
    max-width: 1000px;
    justify-content: center;
    margin-left: 15%;
}

#icon-div {
    margin-left: 25%;
    line-height: 10;
    margin-top: 15%;
}

.icon {
    display: flex;
    flex-direction: column;
    color: darkorange;
    font-size: 50px;
    width: 20vw;
    max-width: 100px;   
}

.icon > i{
    padding-bottom: 4.5rem;
}

#feature {
    margin-top: 15%;
}

.feature-list > p{
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.8rem;  
}

#video{
    display: block;
    margin: 0 auto;
}


#pricing{
    display: flex;
    padding-top: 1.5rem;
    margin-left: 15%;
    align-items: center;
    text-align: center;
}

.price > ul{
    list-style: none;
    padding:20px;
}

.price > ul > li{
    padding: 10px;
}

.price{
    margin: 3rem;
    align-items: center;
    text-align: center;
    border: 1px;
    border-color: black;
    border-style: solid;    
}

.price-title{
    padding: 10px;
    background-color: lightgray;
}

.price-title > h2{    
    padding: 10px 30px;
    width: 100%;
    background-color: lightgray;
    
}

.price > h3 {
    font-size: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
}

button{    
    padding: 8px;
    border-radius: 3px;
    font-size: 1.1rem;
    margin-bottom: 20px;
    background-color: #f1c40f;
    border-style: none;
}

#footer {
    margin-top: 30px;
    padding: 20px;
    background-color: #ddd;
}

#footer > ul {
    display: flex;
    justify-content: flex-end;
    background-color: #ddd;
}

#footer > ul > li {
    display: flex;
    font-weight: bold;
    padding-right: 20px;
    background-color: #ddd;
}

#copyright {
    background-color: #ddd;
    padding-right: 20px;
    text-align: end;
    line-height: 1.5;
    padding-bottom: 20px;
}