body {
    font-family: Comfortaa;
    background-color: #282828;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}


.Menu-Container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
}

.Menu-Container img {
    width: 100%
}

.Play-Button-Container {
    position: absolute;
    left: 40%;
    top: 65%;
    width: 13%;
}

.Play-Button-Container img {
    transition: transform .2s;
    width: 100%;
}

.Play-Button-Container:hover img {
    transform: scale(1.1) rotate(10deg);
}

.fa-volume-xmark {
    position: absolute;
    font-size: 4em; /* Adjust size as needed */
    top: 5%; /* Adjust top position as needed */
    right: 5%; /* Adjust right position as needed */
}
.fa-volume-high {
    position: absolute;
    font-size: 4em; /* Adjust size as needed */
    top: 5%; /* Adjust top position as needed */
    right: 5%; /* Adjust right position as needed */
}

.Music-Button {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}