@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap'); 

*, *::before, *::after {
    box-sizing: border-box;
}
html, body {
    padding: 0;
    margin: 0;
}

body {
    height: 100vh;
    font-family: 'Roboto', sans-serif;
}

.site-wrapper {
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.score-container {
    display: flex;
    justify-content: space-between;
    width: 300px;
    padding: 1em;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.card-container {
    display: flex;
    flex-direction: column;
    padding: 1em;
    width: 300px;
}

.button-container {
    margin-top: 1em;
    /* padding: 0.5em; */
    display: flex;
    justify-content: space-around;
}

button {
    -webkit-border-radius: 45px;
    -moz-border-radius: 45px;
    border-radius: 45px;
    border: none;
    width: 80px;
    height: 35px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    outline: none;
    cursor: pointer;
    background-color: #fff;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
}

button:hover {
    background-color: #f17e7e;
    box-shadow: 0px 15px 20px rgba(21, 42, 33, 0.4);
    transform: translateY(-3px);
}

@media (hover: hover) {
    button:hover {
        background-color: #f17e7e;
        box-shadow: 0px 15px 20px rgba(21, 42, 33, 0.4);
        transform: translateY(-3px);
    }
}