* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    background: #1B244A;
    font-family: 'Cursed Timer ULiL', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}


.container {
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.score-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
}

.home-container,
.guest-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;
}

.side {
    font-family: "Verdana", serif;
    color: #EEE;
    font-size: 2.5rem;
    font-weight: 700;
}

.guest-score,
.home-score {
    height: 160px;
    width: 200px;
    background: #080001;
    border-radius: 0.5rem;
    text-align: center;
    font-size: 5.625rem;
    color: #F94F6D;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-container {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.score-container button {
    padding: 1rem;
    background: transparent;
    border: 1px solid #9AABD8;
    border-radius: 0.3125rem;
    color: #9AABD8;
    font-size: 1.125rem;
}

.score-container button:hover {
    background: #F94F6D20;
    transition: all 1s ease;
}

.leader {
    color: #F94F6D;
}

.new-game-btn {
    align-self: center;
    padding: 1rem 2rem;
    background: transparent;
    font-weight: bold;
    border: 1px solid #9AABD8;
    border-radius: 0.3125rem;
    color: #9AABD8;
    font-size: 1.125rem;
}

.new-game-btn:hover {
    color: #F94F6D;
    transition: all 1s ease;
}

