@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
body {
    font-family: Oswald, serif;
    font-optical-sizing: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: #1A3748;
    color: white;
    line-height: 1.1;
    font-size: 15px;
    background-image: url(../images/fondo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    flex-wrap: wrap;
}
.column {
    flex: 1;
    padding: 10px;
    box-sizing: border-box;
}
.column:nth-child(1){
    align-self:first baseline;
}
.column:nth-child(2){
    flex: 3;
    text-align: center;
}
.column:nth-child(3){
    flex: 3;
    border-left: 1px solid grey;
    padding: 40px 0 40px 80px;
    box-sizing: border-box;
}
p{
    font-size: 25px;
    font-weight: 200;
}
.redes{
    display: flex;
    justify-content: flex-start;
}
.redsocial{
    width: 35px;
    height: 35px;
    padding-top: 20px;
    padding-right: 10px;
}
@media (max-width: 1000px) {
    body{
        font-size: 12px;
    }
    p{
        font-size: 20px;
    }
    .container {
        display: flex;
        flex-direction: column;
        min-height: initial;
        margin: 30px 0 0 0;
        max-height: 90vh;
    }
    .column {
        flex: 100%;
        text-align: center;
    }
    .column:nth-child(1){
        flex: 1;
        padding: 0 0 20px 40px;
    }
    .column:nth-child(2){
        flex: 1;
        text-align: center;
        height: auto;
    }
    .logocircular{
        max-width: 80px;
    }
    .logohorizontal{
        max-width: 180px;
    }
    .column:nth-child(3){
        flex: 1;
        border: none;
        padding: 20px;
        box-sizing: border-box;
    }
    .redes{
        justify-content: center;
    }
}