#sidebar {
    width: 120px;
    background-color: white;
    padding: 10px;
    border-radius: 15px;
    height:fit-content;
    z-index: 2;
    grid-column: 1;
    grid-row: 1 / span 3;
}

#sidebar img {
    margin-bottom: 15px;
}

#sidebar h1 {
    font-size: 16px;
    font-weight: lighter;
    font-family:'Playfair Display', serif, serif;
}

#sidebar p {
    font-family:'Playfair Display', serif, serif;
    color: black;
    text-align: left;
    line-height: 0.5;
}

#sidebar a {
    color: #ff82ac;
}

#sidebar a:hover {
    color: #d80048;
}

.nav {
    line-height: 0.5;
}

#sidebutton, #closebtn {
    display: none;
}

#overlay {
    background-color: #ff82ac;
    opacity: 30%;
    width: 100%;
    height: 1001px;
    display: none;
    z-index: 1;
    top: 0;
    left: 0;
}

@media screen and (max-width : 600px) {
    #sidebar {
        display: none;
        width: 0px;
        overflow-x: hidden;
        grid-column: 1;
        grid-row: 2 / span 3;
    }
    #sidebutton img {
        margin: unset;
    }
    #sidebutton, #closebtn {
        display: grid;
        grid-row: 1;
        grid-column: 1;
        height: auto;
        margin-bottom: 5px;
        text-align: center;
        text-decoration: none;
    }
}