html, body {
    min-height: 100vh;
    height: auto;
    margin: 0;
    padding:0;
    background-attachment: fixed;
    background-image: url(assets/butterfliesbg.png);
    background-size: 150px;
    background-repeat:repeat;
    font-family: kusukusuame;
    font-size: 1.1rem;
}

@font-face {
    font-family: kusukusuame;
    src: url(fonts/kusukusuame-Regular.otf);
}


.outer-container {
    width: 60vw;
    margin: auto;
    margin-top: 2vh;
}

.flexbox {
    display: flex;

}

.book {
    animation: jerky 0.5s infinite;
    width: 95%;
    margin-top: 2vh;
}

.book2 {
    animation: jerky2 0.5s infinite;
    width: 95%;
    margin-top: 2vh;
}


.silly-button {
    width: 60%;
}

.left-side {
    min-height: 80vh;
    width: 30%;
    height: auto;
    padding: 4px;
}

nav {
    width: 60%;
    margin-bottom: 1vh;
    height: 29.5vh;
    margin-left: 1vw;
}

.blog-prev {
    width: 60%;
    margin-bottom: 1.5vh;
    padding: 2px;
    height: 29.5vh;
    overflow-y: auto;
    background-color: rgba(255, 255, 255, 0.738);
    box-shadow: 0px 0px 20px 10px rgba(255, 255, 255, 0.738);
}



@keyframes jerky {
    0% {
    transform: rotate(-2deg);
    }

    50% {
    transform: rotate(-2deg);
    }

    51% {
    transform: rotate(2deg);
    }

    100% {
    transform: rotate(2deg);
    }
}

@keyframes jerky2 {
    0% {
    transform: rotate(2deg);
    }

    50% {
    transform: rotate(2deg);
    }

    51% {
    transform: rotate(-2deg);
    }

    100% {
    transform: rotate(-2deg);
    }
}




.main-container {
    width: 75%;
    min-height: 80vh;
    height: auto;
    margin-left: 1vw;
    margin-right: 1vw;
    
}

/*right side div*/
.right-container {
    min-height: 80vh;
    width: 30%;
    height: auto;
    margin-left: .7vw;
}


header {
    background-color: rgba(255, 255, 255, 0.738);
    margin-bottom: .5vw;
    box-shadow: 0px 0px 20px 10px rgba(255, 255, 255, 0.738);
    font-size: 2.5rem;
    text-align: center;
}


footer {
    background-color: rgba(255, 255, 255, 0.738);
    margin-bottom: .5vw;
    box-shadow: 0px 0px 20px 10px rgba(255, 255, 255, 0.738);
    font-size: 1rem;
    text-align: center;
    margin-top: 1vh;
}


.main-content-container {
    background-color: rgba(255, 255, 255, 0.738);
    overflow-y: auto;
    padding: 2px;
    height: 80vh;
    box-shadow: 0px 0px 20px 10px rgba(255, 255, 255, 0.738);
}

button {
    width: 80%;
    margin: auto;
    border-radius: 0px;
    display: inline-block;
    text-decoration: none;
    padding: 5px;
    height: 6vh;
}

button:hover {
 filter: sepia(50);
}

.color1 {
    background-color: rgb(201, 255, 239);
     box-shadow: inset -1px -1px #0a0a0a, inset 1px 1px #fff, inset -2px -2px grey,
    inset 2px 0px #dfdfdf;
}


.color2 {
    background-color: rgb(206, 204, 150);
     box-shadow: inset -1px -1px #0a0a0a, inset 1px 1px #fff, inset -2px -2px grey,
    inset 2px 0px #dfdfdf;
}


.color3 {
    background-color: rgb(157, 206, 150);
     box-shadow: inset -1px -1px #0a0a0a, inset 1px 1px #fff, inset -2px -2px grey,
    inset 2px 0px #dfdfdf;
}


.color4 {
    background-color: rgb(206, 150, 173);
     box-shadow: inset -1px -1px #0a0a0a, inset 1px 1px #fff, inset -2px -2px grey,
    inset 2px 0px #dfdfdf;
}