*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(51, 20, 46, 0.7),rgba(4,9,30,0.7)),url(images/end.png);
    background-position: center;
    background-size: cover;
    position: relative;
}
.text-box{
    width: 100%;
    position: absolute;
    top: 20%;
    text-align: center;
}
.text-box h1{
    color: #fff;
    font-size: 100px;
    font-family: 'poppins', sans-serif;
    margin-bottom: 20px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 30px;
}
.player-count{
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'poppins', sans-serif;
    color:#bbbaeb;
}
#player-heads{
    position: absolute;
    bottom: 50px;
    left: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    transform: translateX(-50%);
    max-height: 400px;
    overflow-y: auto;
    width: 80%;
}
#player-heads img{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 3px;
    margin: 2px;
}