body{
    margin: 0;
    background: transparent;
}
.container{
    position: relative;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
}
.container .logo{
    position: absolute;
    top: 2%;
    left: 5%;
    height: fit-content;
    width: fit-content;
    justify-content: center;
    z-index: 2;
}
.logo img{
    height: 50px;
}
.box-divs{
    display: flex;
    justify-content: space-between;
}
.box-divs > div{
    height: 100vh;
    background-color: #fff;
    width: 50%;
}
.box-divs > div:first-child{
    background: linear-gradient(90deg, #f27382 50%, snow 50%);
    position: relative;
}
.box-divs > div:last-child{
    position: relative;
}

.first-div-text{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: fit-content;
    height: fit-content;
    margin: auto;
}
.first-div-text h1{
    font-size: 70px;
    color: rgb(60, 55, 55);
    font-family: 'Fredericka', sans-serif;
}
.first-div-text a{
    display: inline-block;
    width: 45%;
    background-color: #fff;
    text-align: center;
    text-decoration: none;
    color: #ff465b;
    font-family: 'SourceSansPro', sans-serif;
    padding: 8px 0 8px 0;
    border: 1px solid #ff465b;
    border-radius: 2px;
}
.second-div-text{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: fit-content;
    height: fit-content;
    margin: auto;
}
.second-div-text h1{
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: #f27382;
    font-size: 40px;
}
.second-box-li{
    background: #f27382;
    border: 10px solid #fff;
    border-radius: 5px;
    box-shadow: 25px 25px 0px #f27382;
    width: 70%;
    margin: auto;
}
.second-box-li ul li{
    padding: 20px 30px;
    color: #fff;
    font-family: 'SourceSansPro', sans-serif;
}

@media screen and (max-width: 820px) {
    .box-divs{
        display: block;
    }
    .box-divs > div{
        width: 100%;
    }
    .second-box-li{
        width: 90%;
        border: 2px solid #fff;
        border-radius: 5px;
        box-shadow: 10px 10px 0px #f27382;
        margin: auto;
    }
}