body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #1B244A;
}

.container {
    width: 580px;
    height: 385px;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1B244A;
    text-align: center;
}

.text {
    width: fit-content;
    height: 50px;
    margin: 70px 0px 0px 85px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 700px;
    font-style: bold;
    color: #EEEEEE;
}

.home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.score {
    width: 150px;
    height: 120px;
    border: 2px solid black;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0px 0px 85px;
    font-family: 'Cursed Timer ULIL', sans-serif;
    font-weight: 400px;
    font-size: 90px;
    color: #F94F6D;
    background-color: black;
}

.input {
   text-align: center;
   display: flex;
   justify-content: space-between;
   flex-direction: row;
   margin-left : 85px;
}

.up {
    width: 45px;
    height: 45px;
    margin: 5px;
    border: 2px solid #9AABD8;
    border-radius: 5px;
    color: #9AABD8;
    background-color: transparent
}   

.reset {
    width: 100px;
    height: 45px;
    margin: 5px;
    color: #9AABD8;
    background-color: transparent;
    margin-left: 10px;
    margin-right: 10px;
    border: 1px solid #9AABD8;
    border-radius: 5px;
}

.rese {
    margin-left: auto;
    margin-right: auto;
    width: 580px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.up:hover, .reset:hover {
    background-color: #9AABD8;
    color: #1B244A;
    cursor: pointer;
}

