*,
*::before,
*::after {
    box-sizing: border-box;
    position: relative;
    animation-timing-function: linear;
}


html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

img {
    width: 65px;
    margin: 0 auto;
    background: transparent;
}

a {
    text-decoration: none;
    font-style: none;
    color: rgb(78, 77, 77);
}

body {
    height: 100vh;
    background-color: rgb(206, 206, 206);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
}

main {
    width: 300px;
    height: 500px;
    margin: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;

    background-color: rgb(78, 77, 77);
    box-shadow: 5px 5px 10px rgb(94, 93, 93);

    border-radius: 30px;
}

h1 {
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

.container {
    width: 290px;
    height: 100%;
    width: auto;
    margin: auto;
    overflow: hidden;
}

.selection {
    margin: 50px auto;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 2rem;
}


.selection:hover,
.selection:focus {
    transform: scale(1.2);
    transition: 300ms;
}


.results {
    font-size: 20px;
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-items: center;
}


.resultScore {
    font-size: 10px;
    color: yellow;
}

.resultSelection {
    width: 40px;
    margin-top: 16px;
    border-radius: 10px;
    padding: 5px
}

.winner {
    width: 40px;
    background-color: yellow;
}

.reset {
    width: 80px;
    margin-top: 30px;
    margin-bottom: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    background-color: rgb(255, 255, 255);
    border: none;
    border-radius: 10px;
}

.reset:hover,
.reset:focus {
    transform: scale(1.1);
    transition: 300ms ease-in-out;
}


footer {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact {
    color: rgb(78, 77, 77);
    margin: 10px auto;
    font-size: 16px;
    text-align: center;

}

.attribution {
    color: rgb(78, 77, 77);
    margin: 10px auto;
    font-size: 10px;
    text-align: center;

}