body {
    background: #ffffff;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    font-family: sans-serif, Tahoma, Geneva, Verdana, sans-serif;
}

.principal {
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.contenido {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    height: 100%;
    width: 100%;
}

.logo,
.titulo,
.imagen,
.info {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.logo img {
    width: 80%;
    height: auto;
    display: flex;
}

.titulo h1 {
    font-size: 1.8rem;
    text-align: center;
    font-weight: bold;
    color: rgb(255, 255, 255);
}

.titulo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.socialMedia {
    width: 40%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.socialIcon {
    margin-right: 10px;
    color: #ffffff;
    opacity: .7;
}

.socialIcon i {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    padding: 15px;
    height: 25px;
    width: 25px;
    transition: all .3s
}

.socialIcon i:hover {
    color: #000000;
    border-color: #000000;
}

.info {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.info h3 {
    color: rgb(255, 255, 255);
    text-align: center;

}