body {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    color: #34656d;
    margin: 0 0 10px 0;
    padding: 5px 0;
    text-align: center;
}

p {
    color: #2f3e46;
    margin: 0 0 15px 0;
    padding: 0;
    text-align: justify;
}

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

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

button {
    background-color: #eb6e80;
    border: none;
    border-radius: 5px;
    color: white;
    padding: 10px 20px;
    text-align: center;
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
}

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

@keyframes frogeAnimation {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.froge {
    animation: frogeAnimation 2s infinite;
    width: 50px;
    height: 50px;
    background-image: url(/resources/froge.svg);
    background-size: cover;
}

footer {
    background-color: #2f3e46;
    color: #cad2c5;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #cad2c5;
}