/* Estilos globales */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #fff;
    color: #777;
}

.logo {
    width: 50%;
    min-width: 300px;
    max-width: 100%;
    margin:auto;
}

h1, h2 {
    font-family: 'Montserrat', sans-serif;
    color: #40c402;
}

a {
    text-decoration: none;
    color: #40c402;
}

header {
    background-color: #272727;
    color: #ffffff;
}

/* Estilos para las redes sociales */
.social-icons a {
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #40c402;
}

.main-section {
    height: 80vh;
}

footer {
    background-color: #272727;
    color: #fff;
    padding: 10px;
}