@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600&display=swap');


body{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: rgb(0, 0, 0);
    overflow: hidden;
}

h1{
    margin-top: 10%;
    font-size: 100px;
    text-align: center;
    font-family: 'Dancing Script', cursive;
    color: peachpuff;
    animation: fade 3s ease-in-out;
}

h2{
    font-size: 40px;
    text-align: center;
    font-family: 'Dancing Script', cursive;
    color: peachpuff;
    animation: fade 3s ease-in-out; ;
}

.links-holder{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10%;
}

a{
    font-size: 50px;
    text-decoration: none;
    color: peachpuff;
    padding: 0 50px 0 50px;
    animation:fade 3s ease-in-out; ;
}

a:hover{
    color: aliceblue;
}

.video{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.5;
}

.audio-player {
    text-align: center;
    padding: 20px;
}

.player-controls {
    margin-top: 10px;
}

#play-button{
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    background-color: peachpuff;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#play-button:hover{
    transform: scale(1.05);
    color: black;
}

#pause-button{
    display: inline-block;
    padding: 10px 12px;
    font-size: 16px;
    background-color: peachpuff;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#pause-button:hover{
    transform: scale(1.05);
}
#volume-slider {
    width: 100px;
}

.audio-player {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 15%;
}

.player-controls {
    margin-top: 10px;
}

#volume-slider {
    width: 100px;
}

@keyframes fade {
    0%{opacity: 0;}
    100%{opacity: 1;}
}





@media (min-aspect-ratio: 16/9){
    .video{
        width: 100%;
        height: auto;
    }
}

@media (max-width : 700px){
    a{
        padding: 0 20px 0 20px;
        font-size: 40px;
    }

    .video{
        object-fit: cover;       
    }

    .links-holder{
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 35vh;
    }

    h1{
        margin-top: 20vh;
    }

    h2{
        margin-top: 0;
        position: absolute;
        
    }
}