body, html {
    height: 100%;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: white;
}

.bg-container {
    background-image: url('portada.jpg');
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.logo {
    width: 20vw; /* 20% of viewport width */
    height: auto;
    margin-bottom: 25px;
}

.title {
    font-size: 2.4em;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2791cf;
}

.address a {
    font-size: 1.2em;
    margin-bottom: 25px;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.address a:hover {
    color: #a7d8f5;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info p {
    margin: 0 15px;
    font-size: 1.1em;
    display: flex;
    align-items: center;
}

.contact-info p a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease-in-out;
}

.contact-info p a:hover {
    transform: scale(1.1);
}

.contact-info i {
    margin-right: 10px;
}
