@font-face {
    font-family: "cursed-timer.ttf";
    src: url("fonts/cursed-timer.ttf")
}

body {
    margin: 0 auto;
}

.container {
    display: flex;
    justify-content: space-around;
    background-color: #1B244A;
    border-radius: 16px;
    padding: 16px 8px;
    max-width: 600px;
}

.button {
    border: 2px solid #9AABD8;
    background-color: #1B244A;
    color: #9AABD8;
    width: 45px;
    height: 45px;
    border-radius: 5px;

}

#middle {
    margin: 0 9px;
}

.home-section {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding-top: 0;
    padding-bottom: 20px;
}

.home-title {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #EEEEEE;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;   
    font-size: 40px;
    max-height: 20%;
    padding-top: 20px;
    margin-bottom: -25px;
}

.home-score-container {
    width: 175px;
    height: 125px;
    background-color: #080001;
    border-radius: 4px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;

}

#home-score-text {
    color: #F94F6D;
    font-family: "cursed-timer.ttf", fantasy;
    font-weight: 400;
    font-size: 90px;
}

.home-score-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}



.guest-section {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding-top: 0;
    padding-bottom: 20px;
}

.guest-title {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #EEEEEE;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;   
    font-size: 40px;
    max-height: 20%;
    padding-top: 20px;
    margin-bottom: -25px;
}

.guest-score-container {
    width: 175px;
    height: 125px;
    background-color: #080001;
    border-radius: 4px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

#guest-score-text {
    color: #F94F6D;
    font-family: "cursed-timer.ttf", fantasy;
    font-weight: 400;
    font-size: 90px;
}

.guest-score-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}


