body{
    margin: 0 auto;
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.wrapper{
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 100vh;
    text-align: center;
}

.left{
    display: flex;
    align-content: center;
    flex-direction: column;
    justify-content: space-between;
}

.right{
    background: url(/assets/images/2151514990-666bc2666105d.webp);
    background-size: cover;       /* Fill entire div */
    background-position: center;  /* Center image */
    background-repeat: no-repeat; /* Prevent tiling */
}


.left .logo{
    width: 15%;
    align-content: center;
}

.left h1 {
    font-family: "Voces", sans-serif;
    font-size: 4rem;
    color: #0d4c85;
    text-transform: uppercase;
    margin: 0;
    margin-top: 60px;
}

.left .slogan {
    position: relative;
    font-family: "Lusitana", serif;
    font-size: 1.3rem;
    color: #71aeca;
    margin: 0 auto;
    width: 33%;
}

.left .slogan:before {
    content: "";
    display: block;
    border-top: solid 1px  #0d4c85;
    width: 50px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
}

.left .slogan:after {
    content: "";
    display: block;
    border-top: solid 1px  #0d4c85;
    width: 50px;
    height: 1px;
    position: absolute;
    top: 50%;
    right: 0;
}

.left .header {
    height: 10px;
    background-image: repeating-linear-gradient(90deg, #71aeca 20% 40%, #0d4c85 40% 60%, #71aeca 60% 80%, #0d4c85 80% 100%);
}
.left .footer {
    font-size: 0.6rem;
    color: #71aeca;
    line-height: 1.5rem;
}



@media only screen and (max-width: 600px) {
    .wrapper{
        display: grid;
        grid-template-columns: 100%;
        min-height: 100vh;
        text-align: center;
    }
    
    .left {
        width: 100%;
    }
    
    .left .logo{
        width: 50%;
        align-content: center;
    }
    
    .left h1 {
        font-size: 2.6rem;
        margin: 0;
        margin-top: 30px;
    }
    
    .left .slogan {
        width: 200px;
        font-size: 1rem;
    }
    
    .left .slogan:before, .left .slogan:after {
        border-top: solid 1px  #0d4c85;
        width: 25px;
    }
    
    .right {
        display: none;
    }
}