header {
    background-color: rgb(238, 134, 136);
    padding: 20px;
    text-align: center;
    font-weight: bold;
    color: rgb(0, 0, 0);
}

body {
    background-color: #94b3f0;
}

h1 {
    font-size: 30px;
    margin: 0;
}

p {
    font-size: 20px;
    text-align: center;
    margin: 20px;
}

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

/* style the clickable boxes */
#link,
nav>div {
    border: 2px solid black;
    width: 200px;
    height: 100px;
    font-size: 15px;
    text-align: center;
    background-color: rgb(237, 249, 101);
    display: inline-block;
    box-sizing: border-box;
}

/* Make the anchor fill the whole box so the entire box is clickable */
#link a,
nav>div a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    text-decoration: none;
    color: #0b3ea4;
}

#link a:hover,
nav>div a:hover {
    transform: scale(1.05);
    background-color: rgb(203, 108, 244);
    transition: transform 0.3s ease-in-out, background-color 0.2s ease-in-out;
}

#dieHard {
    text-align: center;
}