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: 80px;
    border-bottom: 2px solid black;  
    position: sticky;
    top: 0;  
}

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

}
a:hover{color: white;}


.content{
    width: 100%;
    height: 100vh;
    text-align: center;
    background:linear-gradient(120deg, #1db954, #191414);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.title{
    font-weight: bold;
    font-size: 60px;
    color: white;
    margin: 20px 0 40px 0;
}

#container{
    width: 70%;
    height: 70vh;
    background-color: rgb(33, 33, 33);
    border-radius: 12px;
    border: black 2px solid;
    box-shadow: 0 0 10px rgb(33, 33, 33);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: xx-large;
}

#stats{
    width: 55%;
    height: 100%;
}

#chart{
    width: 45%;
    height: 100%;
}

#stats{
    box-sizing: border-box;
    padding: 60px 0 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    font-size: xx-large;
    border-right: 2px solid black;
}

.number{
    font-size: xx-large;
    color: lightgray;
}

#chart{
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: x-large;
    padding: 10px;
}

#chart-container{
    width: 100%;
    height: 80%;
}

#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);

}