body {
    background-color: #f0f0f0;
    font-family: 'Arial', sans-serif;
    color: #333333;
}

h1, h2, h3 {
    color: #2c3e50;
    text-align: center;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.froge-slideshow {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.froge-slide {
    min-width: 100vw;
    scroll-snap-align: start;
    flex-shrink: 0;
    background: url("/froges.svg") no-repeat center center;
    background-size: cover;
    height: 80vh;
}

footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 10px 0;
}

.footer-links a {
    color: #ecf0f1;
    margin: 0 10px;
    text-decoration: none;
}

@media (max-width: 600px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }
}

@media (min-width: 601px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }
}