body {
    background-image: url('bgwebsite.gif');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
}
h1 {
    color: white;
    font-family: 'Chelsea Market', cursive;
}
h2 {
    font-size: clamp(.9rem, .5vw, 1rem); 
    margin-left: 40px; 
    position: absolute;
    bottom: 3rem;
    font-family: 'Chelsea Market', cursive;
    background-color: black;
    margin-right: 50px;
}
.streambutton {
    text-decoration: none;
    color: white;
    font-family: 'Chelsea Market', cursive;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    border-radius: 25px;
    border: 3px solid white;
    padding: 10px 40px;
    transition: all 0.3s ease;
    background-color: transparent;
    position: relative;
    top: 20px;
}
.streambutton:hover {
    background-color: rgba(0, 0, 0, 0.377);
    border: 3px solid #FFE100FF;
    color: #FFE100FF;
    box-shadow: 0 0 2px 0 #FFE100FF, 0 2px 15px 0 #FFE100FF;
}
h4 {
    font-family: 'Chelsea Market', cursive;
    color: white;
    font-size: clamp(1.3rem, 2.3vw, 1.3rem);
    text-justify: inter-word;
    margin-left: 50%;
}
.sitemain-header {
    background-color: rgb(0, 0, 0); 
    color: white;
    padding-top: 20px;
    overflow-x: hidden;
    position: absolute; 
    width: 380px;
    height: 100%;
    top: 0px;
    left: 0;
    z-index: 10;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.61), 0 6px 20px 0 rgba(0, 0, 0, 0.623);
    transition: all 0.3s ease;
}
.responsive-img {
    display: none;
}
@media only screen and (max-width: 1200px) {
    .sitemain-header{
        width: 280px;
        transition: all 0.3s ease;
        left: -230px;
    }
    .sitemain-header:hover {
        left: 0px;
        .responsive-img {
            -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
        }
    }
    .nav-links {
        margin-right: 90px;
    }
    .albumcoverhistorya {
        width: 20rem;
        height: 20rem;
    }
    .contents-main {
        margin-left: 20vw;
    }
    .videoyt:hover {
        width: 560px;
        height: 350px;
        transition: all 0.5s ease-in-out;
    }
    .responsive-img {
        display: block;
        position: absolute;
        top: 400px;
        left: 230px;
        width: 50px;
        height: auto;
        z-index: 9999;
        pointer-events: none;
        filter: brightness(0) invert(1);
        transition: all 0.5s ease-in-out;
    }
    h4 {
        margin-left: 10%;
    }
}
.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.nav-links a {
    color: white;
    text-decoration: none;
    font-family: 'Chelsea Market', cursive;
    font-size: clamp(1.1rem, 2.3vw, 1.1rem);
    transition: all 0.3s ease;
}
.nav-links a:hover {
    color: #FFE100FF;
    transition: all 0.5s ease-in-out;
    text-shadow: 0 0 8px #FFE100FF;
    font-size: clamp(1.2rem, 2.5vw, 1.2rem);
}
.contents-main {
    text-align: right;
    margin-right: 10vw;
    margin-top: 150px;
    position: relative;
    bottom: 2rem;
}
.end-footer {
    text-align: left;
    position: absolute;
}
.termscondition {
    color: rgb(171, 171, 171);
    font-family: 'Chelsea Market', cursive;
    font-size: clamp(1rem, .5vw, .5rem);
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}
.termscondition:hover {
    color: #FFE100FF;
    text-shadow: 0 0 8px #FFE100FF;
    font-size: clamp(1rem, .5vw, .5rem);
    transition: all 0.5s ease-in-out;
    text-decoration: underline;
}
.end-footer nav {
    justify-content: left;
    align-items: left;
}
.disclaimers {
    list-style: none;
    display: flex;
    flex-direction: column;
}
.videoyt {
    width: 560px;
    height: 315px;
    max-width: 100%;
    max-height: 100%;
    min-width: 50%;
    min-height: 50%;
    border-radius: 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.61), 0 6px 20px 0 rgba(0, 0, 0, 0.623);
    transition: all 0.5s ease-in-out;
}
.videoyt:hover {
    width: 560px;
    height: 400px;
    transition: all 0.5s ease-in-out;
}
