*,
*::before,
*::after {
    box-sizing: border-box;
}

@font-face {
    font-family: 'CursedTimerUlil';
    src: url('./CursedTimerUlil-Aznm.ttf') format('truetype');
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
   
}

.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: 575px;
    height: 385px;
    background-color: #1B244A;
    gap: 10px;

}

.container-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #EEEEEE;
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 50px;
}

.black-box{
    width: 155px;
    height: 120px;
    background-color: #080001;
    margin-top: -20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #F94F6D;
    font-size: 90px;
    font-family: 'CursedTimerUlil';
}


.home-btn{
    margin-top: 20px;
    font-size: 18px;
}

.btn{
    margin: 2px;
}

.new-game-container{
  display: flex;
  justify-content: center;
  align-items: center;
}

.new-game-btn{
    width: 100px;
    height: 45px;
    font-size: 16px;
    font-weight: bolder;
}

.guest-btn{
    margin-top: 20px;
    font-size: 18px;
}

button{
    width: 45px;
    height: 45px;
    background-color: #1B244A ;
    border: 1px solid #9AABD8;
    border-radius: 5px;
    color: #9AABD8;
    font-family: 'CursedTimerUlil';
    cursor: pointer;
}

.leader{
    background-color: #D1D5DB;
    color: #F94F6D;
    font-weight: bold;
}

