body {
    background-color: #f0f9ff;
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

h1 {
    color: #1e6091;
    text-align: center;
    font-size: 3em;
    margin-top: 20px;
}

a {
    color: #ffbf69;
    text-decoration: none;
}

a:hover {
    color: #ffee32;
    text-decoration: underline;
}

.froge {
    background: url('/assets/froge.svg') no-repeat center center;
    background-size: contain;
    height: 400px;
    width: 400px;
    margin: 0 auto;
}

button {
    background-color: #ffbf69;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    font-size: 16px;
    margin: 10px 2px;
    cursor: pointer;
}

button:hover {
    background-color: #ffee32;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    color: white;
    background-color: #1e6091;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
}