* {
    font-family: monospace;
    padding: 0;
    margin: 0;
}

body {
    background-image: url('imgs/post-bg.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    position: relative;
}

.aboutimg img,
.footerimg,
.headerimg {
    width: 100vw;
}

.aboutimg {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(253, 255, 255, 0.607);
}

.track-list {
    display: flex;
    flex-direction: column;
    font-size: 2rem;
    background-color: rgba(255, 255, 255, 0.607);
    justify-content: center;
    align-items: center;
    gap: 5px;
}

ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
    width: 25vw;
}

ul > li {
    margin-bottom: 10px;
}

ul > button {
    width: 100%;
    height: 50px;
    font-size: 2rem;
    text-align: left;
    border-radius: 10px;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

ul > button:hover {
    background-color: black;
    color: white;
}

.modal {
    border-radius: 10px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 50px;
    width: 50vw;
    height: 50vh;
}

.modal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.modal button {
    margin-top: 20px;
    color: white;
    width: 100px;
    height: 30px;
    background-color: rgb(81, 190, 81);
    border-radius: 20px;
}

.modal button:hover {
    background-color: rgb(23, 96, 23);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .track-list {
        font-size: 2rem;
    }

    ul {
        width: 40vw;
    }
}

@media screen and (max-width: 480px) {
    .track-list {
        font-size: 1.5rem;
    }

    ul {
        width: 60vw;
    }
}


footer{
    
        position: relative;
        text-align: center;
        color: white;
        background-image: url('/imgs/posty-footer.png');
        background-size: cover;
        background-position: center center;
        padding: 50px;

}


.footertext {
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


  .footerimg{
    width: 50px;
    height: 50px;
    filter: invert(100%);
  }

  #dabout{
    font-size: 20px;
  }

  .track-list{
    padding-bottom: 50px;
    
  }