* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: linear-gradient(135deg, #1a73e8, #00aaff);
    color: white;
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header {
    margin-bottom: 50px;
}

.butterfly-container {
    margin-bottom: 30px;
}

.butterfly {
    width: 200px;
    height: auto;
    animation: fly 5s infinite ease-in-out;
}

@keyframes fly {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.buttons {
    display: flex;
    gap: 20px;
}

.button {
    background-color: #00aaff;
    border: none;
    padding: 15px 30px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 50px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #005f99;
}

footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}