* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fredoka', sans-serif;
    background: linear-gradient(to right, #695252, #5b7dec);
    color: #5f7af1;
    text-align: center;
    padding: 40px 20px;
}

h1 {
    font: size 4rem;
    color: #000000;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.5rem;
    color: #463232;
    margin-bottom: 20px;
}

br {
    font: comicsansms;
    font-size: 2.1rem;
    color: #000000;
    
}

.hero {
    animation: float 3s ease-in-out infinite;
    width: 200px;
    margin: 30px auto;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.gallery img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

footer {
    margin-top: 50px;
    font-size: 1.5rem;
    color: #000000;
}

.static-message {
    font-size: 1.2rem;
    color: #000000;
    margin: 20px 0;
    font-style: italic;
}







