* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f8ff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

.container {
    text-align: center;
    animation: fadeIn 2s ease-in-out;
    max-width: 100%;
}

.logo {
    width: 400px;
    height: 400px;
    margin-bottom: 20px;
    animation: logoAnimation 2s ease-in-out infinite alternate;
}

h1 {
    font-size: 2.5rem;
    color: #4BB2D6;
}

p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #388C7D;
}

button {
    padding: 10px 20px;
    background-color: #4BB2D6;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #388C7D;
}

.hidden {
    display: none;
    font-size: 1.1rem;
    margin-top: 20px;
    color: #388C7D;
}


.instagram-section {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #388C7D;
    margin-top: 15px;
}

.instagram-section i {
    font-size: 1.5rem;
    color: #4BB2D6;
    margin-right: 8px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes logoAnimation {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

/* Media query for smaller screens (max-width: 600px) */
@media (max-width: 600px) {
    .logo {
        width: 250px;
        height: 250px;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
        padding: 0 10px;
    }

    button {
        font-size: 1rem;
        padding: 8px 16px;
    }

    .instagram-section {
        font-size: 1rem;
    }

    .instagram-section i {
        font-size: 1.2rem;
    }
}
