@font-face {
    font-family: Didot Bold;
    src: url("./Didot Bold.otf") format("opentype");
}
@font-face {
    font-family: Didot;
    src: url("./Didot.otf") format("opentype");
}
@font-face {
    font-family: Didot Italic;
    src: url("./Didot Italic.otf") format("opentype");
}
body{
    background-color: #3cb2bd;
    margin: 0;
    padding: 0;
    font-size: 1.75vw;
    font-family: 'Didot Bold', serif;
    font-style: normal;
}
.Banner{
    width: 100%;
    height:5vw;
    background-color: #2d7335;
    position: fixed;
    top: 0px;
    left: 0px;
    text-align: center;
    color: #e3af7f;
    font-family: 'Didot Bold', serif;
    font-style: normal;
}
.everything{
    display: inline-flex;
    padding-top: 6vw;
}
.albumcover{
    width: 50%;
    aspect-ratio: 1;
    box-sizing: border-box;
    border-width: 1vw;
    border-color: #3cb2bd;
    border-style: solid;
}
.Tracklist{
    width: 50%;
    color: black;
    text-shadow: 0.05em 0.05em white;
    aspect-ratio: 1;
    box-sizing: border-box;
    border-width: 1vw;
    border-color: #3cb2bd;
    border-style: solid;
    position: relative;
    
}
.Tracklist > p{
    font-size: 2vw;
}
#all_buttons{
    position:absolute;
    display: block;
    width: 100%;

}
.music_buttons{
    height: fit-content;
    position: relative;
    width:fit-content;
    left: 0;
    right: 0;
    margin-left: auto;
margin-right: auto;
font-size: 1.5vw;
}
.music_button{
    height: fit-content;
    width:fit-content;
    background-color: #0c1fc7;
    text-shadow: none;
    display: inline-flex;
    padding: 0.5vw;
    cursor: pointer;
    color: white;
    position: relative;
    margin: 1vw;
    font-size: 3vw;
}
.music_button{
    text-decoration: none;
    font-family: 'Didot Bold', serif;
}

#YouTubePlayer{
    display: none;
}
#YouTubePlayer:target {
    display: block;
    margin: auto;
    position:relative;
}
#AppleMusicPlayer{
    display: none;
}
#AppleMusicPlayer:target {
    display: inline-block;
}
#SpotifyPlayer{
    display: none;
}
#SpotifyPlayer:target {
    display: inline-block;
}
#AmazonMusicPlayer{
    display: none;
}
#AmazonMusicPlayer:target {
    display: inline-block;
}
#TidalPlayer{
    display: none;
    
}
#TidalPlayer:target {
    display: block;
    position: relative;
    padding-bottom: 25%; 
    height: 0; 
    overflow: hidden; 
    max-width: 100%;
}
#BandcampPlayer{
    display: none;
}
#BandcampPlayer:target {
    display: block;
    position: relative;
    margin: 0 auto;
}
.Banner > h1 > a{
    color: #e3af7f; 
}
h2{
    margin: 0;
    font-family: 'Didot Bold', serif;
    
}
p{
    margin-top: 0;
}
#burger{
    position: fixed;
    top:0;
    left:0;
    height: 5vw;
    aspect-ratio: 1;
    cursor: pointer;
}
.bun{
    background-color: #e3af7f;
    margin-top:0.71vw;
    margin-left:0.5vw;
    height:0.71vw;
    width: 90%;
    border-radius: 0.35vw;
}
#burger-box:checked ~ #menu{
    transform:translate(25vw);
}
#menu{
    transform: translate(0);
    transition: transform 0.5s ease-in-out;
    display: block;
    padding-top: 10vw;
    background-color: #2d7335;
    width: 25vw;
    top:0;
    left:-25vw;
    height:100vh;
    position: fixed;
}
#menu > label{
    font-style: italic;
    cursor: pointer;
}
.menuitem{
    display:block;
    color: #e3af7f;
    text-decoration: none;
    font-size: 2.5vw;
}
.Tracklist > h1{
    font-size: 5vw;
}
#burger-box{
    display: none;
}
.side{
    display: inline-flex;
    width:22vw;
    margin-right:1vw;
    font-size:1.5vw;
    top:0;
    position:relative;
    margin-top: none;
    float:left;
    padding:0;
}
li {
    padding-left: 0;
    position: relative;
}
ol{
    padding-left: 3vw;
}
@media (orientation : landscape) {
    /* Styles */
    .Banner{
        width: 100%;
        height:5vw;
        position: fixed;
        top: 0px;
        left: 0px;
        text-align: center;
        font-family: 'Didot Bold', serif;
        font-style: normal;
    }
    .everything{
        display: inline-flex;
        padding-top: 6vw;
    }
    .albumcover{
        width: 50%;
        aspect-ratio: 1;
        box-sizing: border-box;
        border-width: 1vw;
        border-style: solid;
    }
    .Tracklist{
        width: 50%;
        aspect-ratio: 1;
        box-sizing: border-box;
        border-width: 1vw;
        border-style: solid;
        position: relative;
        
    }
    .Tracklist > p{
        font-size: 2vw;
    }
    #all_buttons{
        position:absolute;
        bottom:0;
        width: 100%;
        height: fit-content;

    }
    .music_buttons{
        height: fit-content;
        position: relative;
        width:fit-content;
        left: 0;
        right: 0;
        margin-left: auto;
    margin-right: auto;
    font-size: 1.5vw;
    }
    .music_button{
        height: fit-content;
        width:fit-content;
        display: inline-flex;
        padding: 0.5vw;
        cursor: pointer;
        position: relative;
        margin: 1vw;
        font-size: 3vw;
    }
    .music_button{
        text-decoration: none;
        font-family: 'Didot Bold', serif;
    }

    #YouTubePlayer{
        display: none;
    }
    #YouTubePlayer:target {
        display: block;
        margin: auto;
        position:relative;
    }
    #AppleMusicPlayer{
        display: none;
    }
    #AppleMusicPlayer:target {
        display: inline-block;
    }
    #SpotifyPlayer{
        display: none;
    }
    #SpotifyPlayer:target {
        display: inline-block;
    }
    #AmazonMusicPlayer{
        display: none;
    }
    #AmazonMusicPlayer:target {
        display: inline-block;
    }
    #TidalPlayer{
        display: none;
        
    }
    #TidalPlayer:target {
        display: block;
        position: relative;
        padding-bottom: 25%; 
        height: 0; 
        overflow: hidden; 
        max-width: 100%;
    }
    #BandcampPlayer{
        display: none;
    }
    #BandcampPlayer:target {
        display: block;
        position: relative;
        margin: 0 auto;
    }
    h1{
        margin: 0;

        font-family: 'Didot Bold', serif;
        
    }
    h2{
        margin: 0;

        font-family: 'Didot Bold', serif;
        
    }
    p{
        margin-top: 0;
    }
    #burger{
        position: fixed;
        top:0;
        left:0;
        height: 5vw;
        aspect-ratio: 1;
        cursor: pointer;
    }
    .bun{
        margin-top:0.71vw;
        margin-left:0.5vw;
        height:0.71vw;
        width: 90%;
        border-radius: 0.35vw;
    }
    #burger-box:checked ~ #menu{
        transform:translate(25vw);
    }
    #menu{
        transform: translate(0);
        transition: transform 0.5s ease-in-out;
        display: block;
        padding-top: 10vw;
        width: 25vw;
        top:0;
        left:-25vw;
        height:100vh;
        position: fixed;
    }
    #menu > label{
        font-style: italic;
        cursor: pointer;
    }
    .menuitem{
        display:block;
        text-decoration: none;
        font-size: 2.5vw;
    }
    .Tracklist > h1{
        font-size: 5vw;
    }
    #burger-box{
        display: none;
    }
    .side{
        display: inline-flex;
        width:22vw;
        margin-right:1vw;
        font-size:1.5vw;
        top:0;
        position:relative;
        margin-top: none;
        float:left;
        padding:0;
    }
    li {
        padding-left: 0;
        position: relative;
    }
    ol{
        padding-left: 3vw;
    }

}
/*portrait*/
@media (orientation : portrait) {
    /* Styles */
    .Banner{
        width: 100%;
        height:6vh;
        position: fixed;
        top: 0px;
        left: 0px;
        text-align: center;
        font-family: 'Didot Bold', serif;
        font-style: normal;
        font-size:2.5vh;
    }
    .everything{
        display: block;
        padding-top: 6vh;
    }
    .albumcover{
        width: 100%;
        aspect-ratio: 1;
        box-sizing: border-box;
        border-width: 1vh;
        border-style: solid;
    }
    .Tracklist{
        width: 100%;
        height:fit-content;
        box-sizing: border-box;
        border-width: 1vh;
        border-style: solid;
        position: relative;
        
    }
    .music_buttons{
        display: block;
        height: fit-content;
        bottom: 0;
        position: relative;
        width:fit-content;
        left: 0;
        right: 0;
        margin-left: auto;
      margin-right: auto;
      font-size: 2vh;
    }
    .music_button{
        height: fit-content;
        width: fit-content;
        display: block;
        padding: 0.5vw;
        margin: 0 auto;
        cursor: pointer;
        position: relative;
        margin-bottom: 1vh;
        text-decoration: none;
        font-family: 'Didot Bold', serif;
        font-size: 5vh;
    }
    h1{
        margin: 0;
        font-family: 'Didot Bold', serif;
    }
    h2{
        margin: 0;
    
        font-family: 'Didot Bold', serif;
    }
    p{
        margin-top: 0;
    }
    #burger{
        position: fixed;
        top:0;
        left:0;
        height: 6vh;
        aspect-ratio: 1.25;
        cursor: pointer;
    }
    .bun{
        margin-top:0.86vh;
        margin-left:0.5vh;
        height:0.86vh;
        width: 5vh;
        border-radius: 0.43vh;
        
    }
    #burger-box:checked ~ #menu{
        transform:translate(75vh);
      }
    #menu{
        transform: translate(0);
        transition: transform 0.5s ease-in-out;
        display: block;
        padding-top: 10vh;
        width: 75vw;
        top:6vh;
        left:-75vh;
        height:94vh;
        position: fixed;
    }
    #Spotify{
        margin-top: 1vh;
    }
    .Banner > h1{
        font-size: min(5vw, 4vh);
        margin: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        white-space: nowrap;
    }
    
    #menu > label{
        font-style: italic;
        cursor: pointer;
    }
    .menuitem{
        display:block;
        text-decoration: none;
        font-size: 5vw;
    }
    .Tracklist > h1{
        font-size: 15vw;
    }
    .Tracklist > p{
        font-size: 5vw;
        padding-bottom: 0;
    }
    .Tracklist > i{
        font-size: 3.5vw;
        padding-top: 0;
    }
    #burger-box{
        display: none;
    }
    .side{
        display: inline-flex;
        width:45vw;
        margin-right:1vh;
        font-size:3vw;
        top:0;
        position:relative;
        margin-top: none;
        float:left;
        padding:0;
    }
    li {
        padding-left: 0;
        position: relative;
      }
    ol{
        padding-left: 7vw;
    }
    #YouTubePlayer{
        display: none;
    }
    #YouTubePlayer:target {
        display: block;
        margin: auto;
        position:relative;
    }
    #AppleMusicPlayer{
        display: none;
    }
    #AppleMusicPlayer:target {
        display: inline-block;
    }
    #SpotifyPlayer{
        display: none;
    }
    #SpotifyPlayer:target {
        display: inline-block;
    }
    #AmazonMusicPlayer{
        display: none;
    }
    #AmazonMusicPlayer:target {
        display: inline-block;
    }
    #TidalPlayer{
        display: none;
        
    }
    #TidalPlayer:target {
        display: block;
        position: relative;
        padding-bottom: 25%; 
        height: 0; 
        overflow: hidden; 
        max-width: 100%;
    }
    #BandcampPlayer{
        display: none;
    }
    #BandcampPlayer:target {
        display: block;
        position: relative;
        margin: 0 auto;
    }
    }
    .Banner > h1 > a{
        text-decoration: none;
    }
    #menu > label{
        cursor: pointer;
    }