
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    
    background-color: #00674f; 
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff; /* Color del texto */
}


header img {
    width: 300px; 
    height: auto;
    margin-bottom: 8px;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: 5px;
    margin-bottom: 40px;
    padding: 12px;
    animation: aparecer 3s infinite linear;;

}


main {
    display: flex;
    gap: 50px; /* Espacio entre los iconos */
    justify-content: center;
}

main img {
    width: 80px; /* Iconos más chicos */
    height: auto;
    transition: transform 0.3s ease;
}


main img:hover {
    transform: scale(1.1);
}

@keyframes aparecer {
    from {

        transform: scale(0);
    }

    to {

        transform: scale(20px);
    }
}


@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    header img {
        width: 120px;
    }
}
