/* Roboto font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,400;0,900;1,300&display=swap');
/* Reset browser default */
*, *::before, *::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Roboto, Arial, Helvetica, sans-serif;
}

.container{
    width: 700px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    font-size: 30px;
}

p{
    color: #2C3E50;
    font-weight: 700;
}

button{
    margin-top: 20px;
    color: white;
    background-color: #2C3E50;
    border: 10px solid #2C3E50;
    border-radius: 10px;
}

button:hover{
    border: 10px solid grey;
    background-color: grey;
}

.winnerMessage{
    padding: 20px;
    background-color:#202e3b;
    color: white;
    margin-top: 30px;
    border-radius: 10px;
}

.closebtn {
    color: white;
    font-weight: bold;
    float: right;
    font-size: 30px;
    line-height: 20px;
    cursor: pointer;
    transition: .7s;
  }