﻿* {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

#sidebarBody {
    background-color: antiquewhite;
}

aside {
    position: fixed;
    padding: 0;
    float: left;
    width: 20vw;
    height: 100vh;
    background-color: #dab3ce;
}

aside nav {
    padding: 10px 2vw 0 0;
}

aside * header {
    height: 150px;
    width: 100%;
    font-size: 40px;
    text-align: right;
}

aside * ul {
    position: absolute;
    top: 0;
    right: 2vw;
    margin-top: 150px;
    font-size: 32px;
    list-style:none;
}

aside * ul * {
    margin-top: 20px;
}

main {
    margin-left: 20vw;
    padding: 180px 10% 10vh;
}

#banner {
    margin-left: 20vw;
    width: 80vw;
    min-height: 150px; 
    position: absolute;
    top:0;
    background-image: url('../spring-background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    z-index: 1;
}
main header {
    text-align: center;
}

section {
    position: relative;
    top: 40px;
    left: 10vw;
    z-index: 2;
    overflow:visible;
}

section p {
    text-align: center;
}

#sidebarButton {
    display: none;
    background-color: transparent;
    border-radius: 10px;
}

#sidebarButton div {
    width: 35px;
    height: 5px;
    background-color: #333;
    margin: 6px 6px;
    border-radius: 3px;
}

#toTopButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    border: none;
    background-color: transparent;
    overflow:hidden;
    transform: rotate(90deg);
    display: none;
}

#toTopButton:focus {
    outline-color: transparent;
}

#toTopButton div {
    width: 25px;
    height: 5px;
    background-color: #d573b7;
    margin: 6px 0;
    border-radius: 3px;
}

#rightSide {
    transform: rotate(60deg) translateX(5px);
}

#leftSide {
    transform: rotate(-60deg) translateX(5px);
}


        @media (max-width: 768px) {
            aside {
                width: 50vw;
                left: -50vw;
                opacity: 0.9;
                z-index: 3;
            }

            #banner {
                margin-left: 0;
                width: 100vw;
            }

            main {
                margin-left: 0;
            }

            section {
                top: 50px;
                left: 0;
            }

            #sidebarButton {
                position: absolute;
                top: 10px;
                right: 10px;
                display: block;
                border: 1px solid black;
                z-index: 3;
            }
        }