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

h1 {
    color: #2F4F4F;
    text-shadow: 2px 2px #D3D3D3;
    font-size: 3em;
    text-align: center;
}

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

a:hover {
    text-decoration: underline;
}

button {
    background-color: #32CD32;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    margin: 5px;
}

button:hover {
    background-color: #228B22;
}

.froge-icon {
    width: 50px;
    height: 50px;
    background-image: url('/assets/froge_icon.svg');
    background-size: cover;
    display: inline-block;
    vertical-align: middle;
}

.container {
    max-width: 960px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

footer {
    color: #708090;
    font-size: 0.9em;
    text-align: center;
    margin-top: 20px;
}

@media (min-width: 768px) {
    h1 {
        font-size: 4em;
    }
    button {
        font-size: 1.5em;
    }
    .froge-icon {
        width: 75px;
        height: 75px;
    }
}