html {
    overflow-y: scroll;
    scrollbar-width: thin;
}

body.main {
    background-color: #1c1b29;
    color: white;
    font-family: "Kode Mono", serif;
    font-size: 14px;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.logo {
    padding: 20px;
    background-color: #2b2e3c;
    width: min-content;
    color: #ef7e90;
    margin-right: auto;
    text-align: center;
}

header {
    display: flex;
    justify-content: center;
}




#logo {
    color: #ef7e90;
    text-decoration: none;
}

h1 {
    color: #ef7e90;
}

h2 {
    color: #f49e51;
}



.middle {
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
}





.home {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    z-index: 1;
    background-color: #2b2e3c;
    background-clip: padding-box;
    margin-top: 1%;
    margin-bottom: 3%;
    position: relative;
}

.table {
    padding: 8px;
    padding-bottom: 24px;
    padding-left: 20px;
    width: fit-content;
    z-index: 1;
    background-clip: padding-box;
    margin-top: 1%;
    margin-bottom: 3%;
    position: relative;
    border: white;
    border-style: solid;
    border-width: 1px;
}


.navbar {
    color: white;
    background-color: #2b2e3c;
    text-align: center;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.background {
    background-color: #2b2e3c;
}


.posts {
    border-style: solid;
    border-color: #465966;
    border-width: 1px;
    padding: 1.5%;
}

.post {
    border-style: solid;
    border-color: #ef7e90;
    border-width: 1px;
    padding: 1%;
    margin-top: 25px;
}

#page_link {
    color: white;
}

#share_link {
    color: #1cd3d5;
}

.music {
    display: flex;
}

.music-left {
    display: flex;
    flex-direction: column;
    margin-right: 18px;
    background-color: #1c1b29;
}

.music-right {
    display: flex;
    flex-direction: column;
    background-color: #1c1b29;
}

.music-box {
    text-align: center;
    margin: 8px;
}

.tabs {
    display: flex;
    flex-direction: row;
    justify-content: safe;
}

.music-tab {
    padding: 8px;
    background-color: #1c1b29;
    border: #ef7e90;
    border-style: solid;
    color: #ef7e90;
    border-width: 1px;
    flex-grow: 1;
    text-align: center;
}

.music-frame {
    border-style: none;
    width: 824px;
}

table {
    border: #ef7e90;
    border-width: 1px;
    border-style: solid;
}

td {
    border: #ef7e90;
    border-width: 1px;
    border-style: solid;
    padding: 8px;
}

#left-review-column {
    text-align: center;
    justify-content: center;
}

#review-image {
    margin: 8px;
}

.hover:hover {
    opacity: 1;
}

.hover {
    opacity: 0;
}


.gallery {
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.row {
    display: flex;
    justify-content: space-around;
}

/* MOBILE ONLY CORRECTIONS */
@media only screen and (orientation: portrait) {
    .middle {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    header {
    display: flex;
    justify-content:center;
    width: fit-content;
    }
    header img {
        max-height: 100%;
        max-width: 100%;
    }
    .music-frame{
        border-style: none;
        width: 100%;
    }

    .music-box {

        max-width: 100%;
    }

    .music {

        max-width: 100%;
    }

    .music-right {
        display: flex;
        flex-direction: column;
        background-color: #1c1b29;
        max-width: 50%;
    }

    .music-left {

        max-width: 100%;
    }

    .tabs {
        flex-wrap: wrap;
    }


    img {
        max-height: 100%;
        max-width: 100%;
    }

    
}