* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url(./img/mar2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.conteiner {
    padding: 20px;
    background-color: yellow;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.buttons {
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    gap: 40px;
}

button {
   padding: 10px;
   font-size: 50px;
   cursor: pointer;
   border-radius: 10px;
   transition: opacity 0.5s ease-in-out;
}

button:hover {
    opacity: 0.7;
}

#rock {
    background-color: #a200ff;
}

#paper {
    background-color: #9ee01a;
}

#scissors {
    background-color: #7dbeed;
}

p{
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 20px;
}

.pontuacao span {
    color: rgb(0, 26, 255);
}

.alexa span {
    color: rgb(255, 102, 0);
}