
/* Generic Styles */
*{
    padding:0;
    margin:0;
    font-family: "Open Sans", sans-serif;
    color: #000;
}
body {
    text-align: center;
}

header {
    text-align: center;
}

h1{
    font-size: 80px;
    margin-top: 50px;
    font-weight: 800;
    color: #01f3f0;
}

h2 {
    font-size: 25px;
    font-weight:600;
    margin: 30px auto 10px auto;
    width: 600px;
}

p {
    font-size: 25px;
    font-weight: 300;
}

#gameOver-message {
    font-size: 40px;
    font-weight:600;
    text-align: center;
    color: #01f3f0;
}

ul{
    text-align: left;
    width: 400px;
    margin: 0 auto;
    font-size: 20px;
    text-align: center;
    list-style-type: none;
}

#score,
#life,
#timer,
#try-again {
    display: none;
    font-size: 2em;
    font-weight: 400;
    margin-right: 3em;
    color: black;
    border-radius: 0.2em;
    padding: 0.2em;
}


#game-board{
    display: none;
    margin: 20px 30px;
    font-size: 30px;
    font-weight: 300;
}
#instruction{
    margin-bottom:30px;
}
button {
    font-size: 15px;
    border-radius: 5px;
    color: white;
    background-color: #01f3f0;
    border: 0;
    border-bottom: 3px solid black;
    border-right: 3px solid black;
    padding: 10px 15px;
    margin-bottom: 5px;
}

button:hover {
    background-color: #b7ebf4;
    border-bottom: 3px solid black;
}
