@import url('https://fonts.googleapis.com/css2?family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lobster Two', sans-serif;
    
}

.background {
    background: url("https://picsum.photos/1920/1080") no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 20px;
}

.Titulo {
    font-size: 3rem;
    margin-bottom: 20px;
}

.pedra {
    height: 100px;
    font-size: 2rem;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    border: none;
    border-radius: 15px;
    background-color: #4CAF50;
    color: white;

}

.papel {
    height: 100px;
    font-size: 2rem;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    border: none;
    border-radius: 15px;
    background-color: #2196F3;
    color: white;
}

.tesoura {
    height: 100px;
    font-size: 2rem;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    border: none;
    border-radius: 15px;
    background-color: #f44336;
    color: white;

}
.result {
    font-size: 1.6rem;
    margin-top: 20px;
}
.pontuacao {
    font-size: 1.6rem;
    margin-top: 20px;
}
.pontuacaoComputador {
    font-size: 1.4rem;
    margin-top: 20px;
}
.pontuacao span {
    color: #2196F3;
}

.pontuacaoComputador span {
    color: #f44336;
}