@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Poppins:wght@600&family=Roboto+Mono&display=swap');

body{
    padding:0 32px;
    background-color: #f5f7fa;
    color:#2c3e50;
    font-family: 'Inter', sans-serif;
}

#container{
    display:flex;
    flex-direction: column;
}

H1{
    font-weight: 600;
    text-align:center;
    font-size:48px;
    margin-top:-5px;
    font-family:'Poppins';
}

.Content{
    display:flex;
    flex-direction: column;
}

#button-container {
    display: flex;
    flex-direction: column;
    border: solid grey;
    background-color:black;
    
}

.Choices{
    display:flex;
    margin:32px;
    
}

#results{
    display:flex;
    flex-direction:row;
    justify-content:center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap:20px;
    margin-top:32px;
    align-content: center;
    

}

.Round-Container{
    display:flex;
    flex-direction:column;
    border: solid #e5e5e5;
    width:300px;
    padding:20px;
    font-size:22px;
    gap:20px;
}

.userChoice,
.computerChoice{
    text-align:center;
    font-weight:600;
    border:solid #E5E5E5;
    padding:20px;
    display: flex;
    flex-direction:column;
    gap:15px;
    font-size:22px;
    background-color: #FDFDFD;
    
}

.final-result{
    text-align:center;
    font-weight: 600;
    font-size:38px;
    margin-top:28px;
}

button{
    margin:4px;
    width:320px;
    height:80px;
    font-size:24px;
    font-weight:600px;
    border-radius:8px;
}



.heading{
    font-size:36px;
    font-weight:600;
    text-align:center;
    margin-top:30px;
    margin-bottom: 10px;
}

.currResult{
    margin:auto;
    display:flex;
    flex-direction:column;
    font-weight:700;
    gap:25px;
}

.currRound{
    font-size:24px;
    font-weight:500;
    text-align:center;
}

.currScore{
    text-align:center;
    font-size:48px;
    font-family: 'Roboto Mono';
}