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

body {
    font-family: Roboto, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

h1 {
    text-align: center;
    font-weight: 900;
    font-size: 40px;
}

.moves {
    display: flex;
    justify-content: space-evenly;
    margin: 20px auto;
    max-height: 50%;
}

.moves img {
    max-width: 20%;
    transition: all 200ms ease-in-out;
}

.moves img:hover {
    flex-grow: 1.15;
    max-width: 22%;
    height: auto;
}

.moves img:active {
    flex-grow: 1.3;
    max-width: 23%;
    height: auto;
    transition: all 100ms ease-in-out;
}

.results {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 50px;
    margin: 50px;
    flex-grow: 1;
    gap: 50px;
}

.results p {
    font-weight: 300;
    font-size: 70px;
    margin: 10px; 
}

h3 {
    font-weight: 500;
    margin: 0;
    letter-spacing: 7px;
}

.complay {
    visibility: hidden;
    transition: all 200ms ease-in-out;
    width: 120px;
}