@font-face {
    font-family: 'OptimaReg';
    src: url(../fonts/Optima_Regular.woff) format('woff');
}

@font-face {
    font-family: 'OptimaBold';
    src: url(../fonts/Optima_Bold.woff) format('woff');
}

body {
    margin: 0;
    font-family: 'OptimaReg';
    font-size: 16px;
    letter-spacing: 0.1px;
    line-height: 130%;
    height: 100%;
    color: #483029;
    background-color: #98c1da;
}

.logoCentro {
    margin: 0px auto 10px;
    width: 35%;
}

.animado {
    margin: auto;
    text-align: center;
    animation-duration: 1s;
    animation-name: comming;
    position: relative;
}

@keyframes comming {
    from {left: -20px; opacity: 0%;}
    to {left: 0px; opacity: 100%;}
}

.abajo {
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: flex-end; /* Alinea el contenido abajo */
    height: 80px; /* Define una altura para el contenedor */
    color: #261915;
}

.symbol {
    height: 20px;
}

h1 {
    text-align: center;
    line-height: 120%;
}

a {
    color: #483029;
    text-decoration: none;
}

.container {
    margin: 40px auto 20px;
    max-width: 70%;
    padding: 50px;
}

.row {  
    display: flex;
    flex-wrap: wrap;
}

.centrado4 {
    clear: both;
    text-align: center;
    margin: auto;
    width: 95%;
}

.centrado2, .centrado3 {
    display: flex;
    position: relative;
    margin: auto auto 20px;
}

.centrado2 {
    float: left;
}

.centrado3 {
    float: right;
}

@media screen and (max-width: 700px) {
    .row {   
      flex-direction: column;
      font-size: 16px;
    }
    .logoCentro {
        width: 60%;
    }
    .animado {
        width: 100%;
    }
}