body {
    background-color: rgb(10, 35, 43);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    text-align: center;
    color: white;
    font-family: 'Cooper Hewitt', sans-serif;
}
.bloque {
    display: flex;
    flex-direction: row;
    align-items: flex-start !important;
    justify-content: flex-start;
}

.logo {
    position:absolute;
    top:10px;
    left: 10px;

}
.img {
    width: 100%;
    max-width: 220px;
    height: auto;
    left: 1em;
    top: 1em;

}
h3{
    color: rgb(47, 182, 174);
    font-weight: bold;
    margin: 1em 0;
    font-size: 2rem;
}

.text-line {
    font-weight: bold;
    font-size: 3rem;
    margin: 2px 0;
}

.text-line2 {
    font-size: 2rem;
    color: rgb(255, 255, 255);
    margin: 0.5em auto;
    //font-weight: bold;

}

.events-section {
    max-width: 600px;
}

.events-section h2 {
    font-size: 2em;
    color: white;
    margin: 15px 0 10px;
}

.events-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.events-section li {
    margin: 8px 0;
}

a {
    color: rgb(47, 182, 174) !important;
    text-decoration: none;

    transition: color 0.3s ease;
}

a:hover {
    color: rgb(47, 182, 174);
    text-decoration: underline;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2em;
    margin-top: 10px;
}

.social-links img {
    height: 70px;
    transition: transform 0.2s ease;
}

.social-links a:hover img {
    transform: scale(1.1);
}
.download{
    margin: 2em 0 !important;
    font-size:12px;

}
.download a{

    color: rgb(47, 182, 174) !important;
}
.download i{

    margin-right: 1em;
}
.zonatexto {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 50px auto 0;
    max-width: 900px;
    width: 100%;

}
@media (max-width: 1300px) {
    .zonatexto {
        max-width: 600px;
    }
}
@media (max-width: 768px) {
    .bloque {
        flex-direction: column !important;
        justify-content: center;
    }
    .logo {
        position: relative;
        margin-top:20px;
        width: 100%;
    }
    .img {
        max-width: 180px;
    }
    .zonatexto div {
        width: 90%;
        max-width: 100% !important;
        font-size: 18px;
    }
    .zonatexto .text-line {
        font-size: 20px;
        font-weight: bold;
    }

    .social-links img {
        height: 40px;
        transition: transform 0.2s ease;
    }
}