* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
}

hr {
    margin: 0.5rem 0;
}

.main-box {
    border: 5px solid rgb(70, 70, 70);
    border-top-left-radius: 10rem;
    border-bottom-right-radius: 10rem;
    box-shadow: inset 5px 5px 100px;
    height: auto;
    width: auto;
    margin-top: 10vh;
    padding: 0.5rem;
    background-color: rgb(200, 200, 200);
    color: black;
}

.top {
    height: 20rem;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

#logo-box {
    border: 1px dashed rgb(70, 70, 70);
    border-top-left-radius: 10rem;
    height: 100%;
    width: 20rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

img {
    border-radius: 50%;
    height: auto;
    width: 70%;
    animation: loader 1s linear 0s infinite normal;
}

@keyframes loader {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#songs-list {
    border: 1px dashed rgb(70, 70, 70);
    height: 100%;
    width: 20rem;
    background-color: rgb(70, 70, 70);
    overflow: auto;
}

.song {
    border-radius: 0.3rem;
    height: auto;
    width: auto;
    margin: 0.3rem;
    padding: 0.3rem;
    font-weight: bold;
    background-color: rgb(200, 200, 200);
    list-style: none;
    cursor: pointer;
}

.song:hover {
    background-color: black;
    color: white;
}

.playing {
    background-color: black;
    color: white;
}

.bottom {
    height: 7rem;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

button {
    border-width: 0.5rem;
    height: auto;
    width: auto;
    font-weight: bold;
    padding: 0.5rem;
    cursor: pointer;
}