html{
    transition: ease-in 0.2s;
    overflow-x: hidden;
}
body[data-theme="dark"]{
    background-color: #10121c;
    h1,h2,h3,h4,h5,p,a{
        color: white;
    }
    a.nav-link.active{
        color: darkgrey;
    }
    .home-section{
        background-color: #1A303E;
        i{
            color: #C79996;
        }
    }
    .home-reviews{
        background-color: #131521;
    }
}
body[data-theme="light"]{
    background-color: #effafd;
}
.initial-accounts-card *{
    border: 0;
}
a.nav-link:hover{
    color: deepskyblue;
    cursor: pointer;
}
h1{
    font-family: "Audiowide", serif;
    font-size: 3rem;
    font-weight: 400;
    font-style: normal;
}
h2{
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 4rem;
}
h3{
    font-family: "Roboto", sans-serif;
    font-size: 2rem;
}
nav{
    font-size: large;
    margin-bottom: 5%;
}
main{
    width: 70%;
    margin: 0 auto 2%;
    min-height: 100vh;
    border-radius: 10px;
    padding: 0;
}
.home-hero{
    .btn{
        margin-top: 5%;
        margin-right: 3%;
        min-width: 100px;
    }
    .btn-primary{
        background-color: #00d3ff;
        border: 0;
        color: black;
    }
}
.home-section{
    margin: 20vh 0;
    background-color: #00d3ff;
    i{
        margin-bottom: 10%;
    }
}
.home-secondary-hero{
    margin: 10vh 0;
    padding: 0;
}
.home-reviews{
    margin: 10vh 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 5%;
    background-color: #c9f6ff;
    img {
        height: 100px;
        width: 100px;
        object-fit: cover;
    }
}
.home-independent{
    margin: 10vh 0;
    h3{
        font-size: 20rem;
    }
    h4{
        font-size: 5rem;
    }
}
.blog-post{
    padding: 3%;
    border-radius: 10px;
    background-color: rgba(98, 119, 124, 0.2);
}
.my-post{
    background-color: rgba(0, 211, 255, 0.2);
}
footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 20vh;
    background-color: #1A303E;
    color: #effafd;
    #copyright{
        color: darkslategrey !important;
    }
}
footer h1{
    font-style: italic;
    font-weight: bold;
    font-size: 10rem;
}
footer p{
    font-size: 1rem;
}
/*below code allows for a responsive design*/
@media (max-width: 980px) {
    main{
        width: 90%;
    }
    h2{
        font-size: 3rem;
    }
    footer h1{
        font-size: 5rem;
    }
    .home-independent h4{
        font-size: 3rem;
    }
}

.blog-image{
    width: 20vw;
    height: auto;
}