*{
    margin:0;
    box-sizing: border-box;
}
body{
    height: 100%;
    overflow: hidden;
    background-color: #0a0a23;
    text-align: center;
    color:white;
}
h1{
    margin:35px 0 30px;
    font-size: 3em;
    font-family:'Times New Roman', Times, serif;
}
.btn{
    cursor: pointer;
    width:150px;
    margin:10px 60px;
    padding:10px;
    background-color:aquamarine;
    color:black;
    font-size:1.5em;
    font-weight:bold;
}
.btn:hover{
    background-color: rgb(15, 202, 187);
}
.score-container{
    display:flex;
    justify-content:space-around;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin:15px 0;
    font-size:1.5em;
}
.results-container{
    font-size: 1.5rem;
    margin:8px 0;
}
#winner-msg {
  margin-top: 20px;
}
h2{
    font-size: 1.5em;
    margin:15px;
}
p{
    font-size: 1.2em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
}