html {
    display: flex;
    justify-content: center;
    text-align: center;
    background: #ffdbe0;
    height: 100vh;
    overflow: hidden;
}

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

body {
    width: 100%;
}

h1 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 2.5rem;
    margin-top: 10px;
    margin-bottom: 14px;
}

h2 {
    font-size: 2.5rem;
    color: black;
    margin: 10px;
}

#backdrop {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("/games/backgrounds/pink1.jpg");
    border: 6px solid black;
    width: 100%;
    height: 80%;
}

#game {
    display: block;
    width: 50%;
    height: 50%;
    background: pink;
    border: 5px solid black;
    border-radius: 20px;
}

input, button {
    border: 1px solid black;
    font-size: 2rem;
    width: 25%;
    height: 20%;
    background: white;
    text-align: center;
    margin: 2%;
    border-radius: 4px;
}

input {
    width: 84%;
}

button:hover {
    color: white;
    background: black;
}

#footer {
    margin-top: 6px;
}

a {
    padding: 0 1px 0 1px;
}

#hints {
    font-size: 1.2rem;
    font-weight: 700;
}

