/* --- General Styles ---*/
body {
    background-color: #d9d9d9;
    text-align: center;
}

a {
    text-decoration: none;
}

.topper, .feature {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
}

.btn {
    height: 35px;
    margin: 12px 0;
    padding: 0 10px;
    font-weight: bold;
}

/* --- Specified Styles --- */
.nav-link {
    margin: 0 5px;
    font-weight: bold;
    font-size: 18px;
    color: black;
}

#header {
    position: fixed;
    top: 0;
    min-height: 75px;
    padding: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    
}

#header-img {
    height: 75px;
}

#nav-bar {
    margin-left: 55vw;
}

.topper {
     flex-direction: column;
     height: 150px;
}

#email {
    max-width: 275px;
    width: 100%;
    padding: 3px;
    margin: 3px 0;
}

#submit {
    max-width: 100px;
    width: 100%;
}

#features {
    display: block;
    max-width:80%;
    margin-bottom: 30px;
}

.feature {
    margin: 10px auto;
}

.icon {
    flex-basis: 30%;
}

#pricing {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 30px;
}

.product {
    border: 2px solid black;
    flex-basis: 20%;

}

.details {
    list-style-type: none;
    margin-right: 40px;
}

#mobile-nav {
    display: none;
}

.foot-links {
    display: flex;
    flex-direction: row;
    justify-content: end;
    list-style: none;
}

.foot-links a {
    color: black;
    margin: 0 5px;
}

.copyright {
    display: flex;
    justify-content: end;
    font-size: 10px;
}

/* --- Utiliy Styles --- */
@media (max-width: 900px) {
    #nav-bar {
    margin-left: 45vw;
}

   .nav-link {
    margin: 0 2px;
    font-size: 16px;
   } 
}

@media (max-width: 600px) {
    #nav-bar {
    display: none;
    }

   #mobile-nav {
    display: flex;
    justify-content: end;
    overflow: hidden;
    margin-left: 250px;
   }

   #mobile-nav a {
    float: right;
    text-align: center;
    padding: 14px 16px;
    margin-right: 50px;
    color: black;
   }

   .dropdown {
        float: right;
        overflow: hidden;
    }

    .dropdown .dropbtn {
        border: none;
        outline: none;
        padding: 14px 16px;
        margin: 0;
    }

    .drop-content {
        display: none;
        position: absolute;
        min-width: 160px;
        z-index: 1;
    }

    .drop-content a {
        float: none;
        padding: 12px 16px;
        display: block;
        text-align: left;
    }

    .dropdown:hover .drop-content {
        display: block;
    }
}
