* {
    padding: 0;
    margin: 0;
    font-family: sans-serif;
}

body {
    background-color: rgb(8, 8, 8);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color:rgb(161, 159, 159)
}

img {
    width: 50px;
}

main {
background-color: rgb(36, 35, 35);
padding: 10px 20px;
border-radius: 15px;
}

#username-seperation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#image-holder {
    background-image: url("image.jpg");
    width: 100px;
    height: 100px;
    background-size: contain;
    border-radius: 50%;
}


#image-overlay {
width: 100%;
height: 100%;
z-index: 999;
}

#image-overlay img {
    width: 100%;
    height: 100%;
    transform: translateY(-30px);
}

h1 {
  color: white;
  font-weight: bold;
  font-size: 25px;
  display: inline-block;
}

#info-box {
 transform: translateX(60%);
 max-width: 50%;
 overflow-x: scroll;
}


#pronouns {
    margin-left: 4px;
    font-size: 15px;
    font-weight: 100;
    display: inline-block;
    color: rgb(4, 72, 77);
    text-shadow: 0px 0 1px rgb(150, 150, 150);
}

#allay-list img {
 width: 30px;
 border-radius: 50%;
}

#about-me {
    background-color: rgb(28, 28, 29);
    padding: 10px;
    border-radius: 10px;
    width: 80%;
    margin: 10px auto 5px auto;
    max-width: 500px;
}

#leaderboard {
    background: linear-gradient(rgb(20, 20, 20), rgb(30, 30, 30));
    margin-top: 50px;
    height: 167px;
    overflow: scroll;
}



 .leaderboard-user {
    display: flex;
    justify-content: center;
    padding: 10px;
    border: 1px solid white;
    border-collapse: collapse;
 }

 .leaderboard-user img {
    width: 50px;
    border-radius: 50%;
    margin-right: 10px;
 }

 .leaderboard-user span {
    margin-top: 8px;
    color: gold;
 }

 #time {
    display: flex;
    justify-content: center;
    margin-top: 30px;
 }








