body{
    font-family: sans-serif;
    padding: 0px;
    margin: 0px;
    color: rgb(179, 179, 179);
    background-color: rgb(33, 33, 33);
}

.menu{
    font-size:x-large;
    font-weight: bold;
    background-color: rgb(12, 12, 12);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 10vh;
    border-bottom: 2px solid black;  
    position: sticky;
    top: 0;  
}

a{
    text-decoration: none;
    color: rgb(179, 179, 179);

}
a:hover{color: white;}


.content{
    padding-top: 20px;
    width: 100%;
    height: 90vh;
    text-align: center;
    background:linear-gradient(120deg, #1db954, #191414);
}

.title{
    font-weight: bold;
    font-size: 60px;
    color: white;
}

.track{
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 40px;
}

.trackImage{
    width: 640px;
    height: 640px;
    border: 2px solid black;
    margin-right: 20px;
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: 0 0 10px rgb(33, 33, 33);
    background-color: rgb(33, 33, 33);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: xx-large;
}

#trackImage{
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.trackInfo{
    box-sizing: border-box;
    width: 550px;
    height: 640px;
    border: 2px solid black;
    border-radius: 12px;
    box-shadow: 0 0 10px rgb(33, 33, 33);
    background-color: rgb(33, 33, 33);
    padding: 20px;
    display: flex;
    justify-content:space-between;
    flex-direction: column;
}

.progressBar{
    width: 500px;
    height: 20px;
    display: flex;
    justify-content:space-around;
    align-items: center;
    border: 1px solid black;
    background-color: rgb(33, 33, 33);
    box-shadow: 0 0 20px rgb(33, 33, 33);
    border-radius: 10px;
    padding-top: 2px;
    margin-right: 20px;
}
.bar{
    width: 370px;
    height: 4px;
    border-radius: 2px;
    background-color: rgb(83,83,83);
}

.progress{
    background-color: black;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background-color: rgb(51, 51, 51);
}

#siteStats{
    width: 100%;
    height: 15vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: x-large;
    font-weight: bold;
    background-color: rgb(22, 22, 22);
    box-shadow: 0 0 40px rgb(22, 22, 22);

}

@media screen and (max-width: 768px){
    .menu{
        font-size: small;
    }

    .content{
        height: 100%;
    }

    .title{
        font-size: 30px;
    }
    .track{
        flex-direction: column;
        align-items: center;
    }
    .trackImage{
        width: 70%;
        height: auto;
    }
    .trackInfo{
        width: 70%;
        height: auto;
    }
    .progressBar{
        width: 70%;
    }
    .bar{
        width: 70%;
    }
    .progress{
        width: 100%;
    }

}