html, body {
    overflow: hidden;
    margin: 0;
}

    h1 {
        margin-bottom: 0px !important;
        margin-top: 5px !important;
        color: black !important;
    }
    
    #logo {
        display: block;
        margin-left: auto;
        margin-right: auto;
        height: 25px;
        margin-top: 10px;
        margin-bottom: 20px;
    }

h3 {
    margin-top: 5px;
}


:root {
    --image: url('images/default.png');
}

@media (min-width: 601px) and (min-height: 501px) {
    .play-pause-button {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: black;
    border-radius: 9999px;
    padding: 0px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    user-select: none;
    text-align: center;
}


    
    body, html {
        width: 100%;
        height: 100vh;
        position: relative;
    }

    #background {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-image: var(--image);
        background-size: 100% 100%;
        filter: blur(40px); 
        z-index: -1;
        
    }
    #thesong {
        border: 5px solid white;
        border-radius: 15px;
        margin: auto;
        margin-top: 20vh;
        width: 500px;
        text-align: center;
        color: black;
        padding: 5px;
        background-color: rgba(255,255,255,0.5);
        position: absolute;
        top: 30%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    #albumImage {
        border-radius: 15px;
    }
    
}

@media (max-height: 500px) { 
        .play-pause-button {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: black;
    border-radius: 9999px;
    padding: 0px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    user-select: none;
    text-align: center;
}
    #background {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-image: var(--image);
        background-size: 100% 100%;
        filter: blur(40px); 
        z-index: -1;
        
    }
    #albumImage {
       display: none;
    }
    html {
        text-align: center;
    }
    #thesong {
        border: 5px solid white;
        border-radius: 15px;
        margin: auto;
        width: 500px;
        text-align: center;
        color: black;
        padding: 5px;
        background-color: rgba(255,255,255,0.5);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}


@media (max-width: 600px) and (min-height: 501px) {
.play-pause-button {
    display: inline-block;
    width: 100%;
    height: 70px;
    background-color: black;
    border-radius: 0px;
    padding: 0px;
    margin: 0px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    user-select: none;
    text-align: center;
    bottom: 0px;
    left: 0px;
    position: absolute;
    
}
    
    #background {
        display: none;
    }

    #albumImage {
        width: 100%;
    }

    h3 {
        text-align: center;
        font-weight: normal;
    }

    #artist {
        font-weight: bold;
    }

    #b {
        text-align: center;
    }
}
