* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;}

body {font-family: Arial, sans-serif;
    background-color: #1aa8b0;
    color: #333;}

header {background-color: #0a3b42;
    color: white;
    text-align: center;
    padding: 10px;}

h1 {font-size: 2.5em;}

section {margin: 20px;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);}

h2 {color: #0a3b42;
    margin-bottom: 10px;}

#game-description p, 
#how-to-play ol, 
#rules ul {
    font-size: 111;
    line-height: 1.6;
}

ol, ul {
    margin-left: 10px;
}



.man {
    font-size: 2.5em;
    display: inline-block;
    margin: 0 20px;
}

footer {
    background-color: #557c84;
    color: white;
    text-align: center;
    padding: 10px;
    position: sticky;
    width: auto;
    bottom: 0;
}