@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

* {
    padding: 0;
    margin: 0;
}

body {
    font-family:'Open Sans', sans-serif;
    color: rgb(17, 5, 44);
    background-color: rgb(247, 244, 242);
}

header {
    text-align: center;
    height: 50px;
}

h1 {
    font-weight: 400;
}

section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#restart {
    margin: 10px;
    padding: 8px;
    font-family:'Courier New', Courier, monospace;
    font-weight: bold;
    background-color: #90EE90;
    border-color: #70bd70;
}

footer {
    text-align: center;
    height: 50px;
}

