body {
    background-color: #f0fff4;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    padding: 20px;
}

h1 {
    color: #2a9d8f;
    font-size: 2.5em;
    text-align: center;
}

p {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.2em;
}

a {
    color: #e76f51;
    text-decoration: none;
    border-bottom: 1px dashed #e76f51;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

a:hover {
    color: #a5a58d;
    border-bottom-color: #a5a58d;
}

button {
    background-color: #e9c46a;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 1em;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.froge-image {
    display: block;
    margin: 0 auto;
}

.footer {
    text-align: center;
    margin-top: 50px;
    color: #c9ada7;
    font-size: 0.9em;
}

.animation-froge {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    animation: jump 2s infinite ease-in-out;
}

@keyframes jump {
    0% {
        top: 0;
    }
    50% {
        top: -30px;
    }
    100% {
        top: 0;
    }
}