/* Beautiful trail CSS for froge enthusiasts! */
body {
    background-color: #f0fff4;
    font-family: "Comic Sans MS", cursive, sans-serif;
}

h1 {
    color: #2c5f2d;
    text-align: center;
    padding: 20px;
}

p {
    color: #374045;
    line-height: 1.6;
    padding: 10px 20px;
}

a {
    color: #3a6351;
    text-decoration: none;
}

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

.froge-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

button {
    background-color: #2c5f2d;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #1e392a;
}

svg {
    width: 100px;
    height: auto;
    margin: 20px;
}