body{
    margin: 0;
    padding: 0;
}
.container{
    display: flex;
    flex-flow: row;
}
.col-6{
    width: 50%;
    height: 100vh;
    display: flex;
    flex-flow: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.col-6.azul{
    background-color: #8cbdcc;
}
.col-6.rosa{
    background-color: #e7c3cd;
}

button{
    padding: 10px 40px;
    border-radius: 20px;
    background-color: transparent;
    border: 3px solid #000;
    color: black;
    font-size: 40px;
    font-weight: 900;
    font-family: 'futura-pt', sans-serif;
    cursor: pointer;
    transition: all 0.3s linear;
}
button:hover{
    background-color: rgba(255,255,255,0.4);
}

.col-6 img{
    max-width: 80%;
}


@media screen and (orientation: portrait){
    .container{
        flex-flow: column-reverse;
        height: 100vh;
    }
    .col-6{
        height: 50vh;
        width: 100%;
    }
    button{
        font-size: 20px;
    }
    .col-6 img{
        max-width: 50%;
    }
}

@media screen and (orientation: portrait) and (min-width: 375px){
    .container{
        flex-flow: column-reverse;
        height: 100vh;
    }
    .col-6{
        height: 50vh;
        width: 100%;
    }
    button{
        font-size: 30px;
    }
    .col-6 img{
        max-width: 70%;
    }
}

@media screen and (orientation: portrait) and (min-width: 700px){
    .container{
        flex-flow: column-reverse;
        height: 100vh;
    }
    .col-6{
        height: 50vh;
        width: 100%;
    }
    button{
        font-size: 30px;
    }
    .col-6 img{
        max-width: 50%;
    }
}