* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    height: 100vh;
}

.container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.col-left {
    display: none;
}

.col-right {
    height: 100%;
    width: 100vw;
    /* background-color: rgba(163,103,118,0.8);  */
    background-color: #A12562;
    /* background-color: rgba(161, 37, 98, 0.85); */
    display: grid;
    align-items: center;
}

.content {
    align-self: start;
    padding: 0 1.1rem;
    max-width: 100%;
}

.logo-container {
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #A12562;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 1rem;
    align-self: end;
}

.logo {
    max-width: 100%;
    max-height: 160px;
    height: auto;
}

.content__title {
    font-family: "Lora", serif;
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #fdfdfd;
    position: relative;
    margin-bottom: 2.5rem;
    text-align: center;
}

.content__title--mobile {
    margin: 2.5rem 0;
}

.content__title--desktop {
    display: none;
}  

.content__title::before,
.content__title::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 60%;
    height: 1px;
    background-color: #fdfdfd;
    transform: translateX(-50%);
}

.content__title::before {
    top: -8px;
    bottom: unset;
}

.content__text {
    font-family: "Lora", serif;
    font-size: 1.1rem;
    color: #fdfdfd;
    line-height: 1.7;
    margin: 1.2rem 0;
}

.content__text:first-of-type {
    margin-top: 0;
}

.content__link,
.content__text span {
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.content__link {
    text-decoration: none;
}


@media all and (min-width: 768px) {
    .container {
        flex-direction: row;
    }

    .col-left {
        flex-basis: 20%;
        display: flex;
        justify-content: center;
    }

    .col-right {
        flex-basis: 80%;
    }

    .logo-container {
        margin-left: -100px;
        width: 450px;
        padding: 2rem;
        align-self: unset;
    }

    .logo {
        max-height: none;
    }

    .content {
        padding: 0;
        padding-left: 4rem;
        max-width: 90%;
    }

    .content__title--mobile {
        display: none;
    }

    .content__title--desktop {
        display: block;
    }   

    .content__title {
        font-size: 1.8rem;
        margin-bottom: 3.1rem;
        text-align: left;
    }

    .content__title::after {
        left: 0;
        width: 100%;
        transform: none;
    }

    .content__title::before {
        display: none;
    }
    
    .content__text {
        font-size: 1.2rem;
    }

    .content__text:first-of-type {
        margin-top: 1.2rem;
    }
    
}

@media all and (min-width: 1200px) { 
    .col-left {
        flex-basis: 25%;
    }

    .col-right {
        flex-basis: 75%;
    }

    .content__title {
        font-size: 2.25rem;
    }
    
    .content__text {
        font-size: 1.4rem;
    }

    .logo-container {
        min-height: 230px;
        height: 30vh;
        max-height: 300px;
        min-width: 580px;
        width: 28vw;
        max-width: 750px;
        padding: 3rem;
        margin-left: -8vw;
    }
}

@media all and (min-width: 1400px) { 
    .content {
        max-width: 900px;
    }
}
