@import url('https://fonts.googleapis.com/css?family=Poppins:400,700,900');
body{
    margin: 0;
    height: 100vh;
    color:#FFFFFF;
    overflow: hidden;
}
h1{
    margin: 0;
    margin-left: 40px;
    font-family: 'Poppins';
    font-size: 4vw;
    width: 70%;
    transition: transform 0.1s;
    display: block;
    line-height: 90%;
}
button{
    margin-left: 60px;
    font-family: 'Poppins';
    font-size: 16px;
    margin-top: 5%;
    border: none;
    background: none;
    border: 2px solid #FFFFFF;
    border-radius: 60px;
    color: #FFFFFF;
    padding: 1vw 4vw;
}
.cont-top{
    display:flex;
    height: 60vh;
}
.cont-top-left div , .cont-top-right div ,.cont-bottom div{
    width: 120%;
}
.cont-top-left{
    width:100%;
    height: 100%;
    background: #2196F3;
    display: flex;
    align-items: center;
    box-shadow:inset 0px 0px 0px #00000093;
    transition: all 0.2s ease-in-out;
}
.cont-top-left:hover{
    box-shadow:inset 2px 2px 50px #00000093;
}
.cont-top-right{
    width:100%;
    height: 100%;
    background: #ff8800;
    display: flex;
    align-items: center;
    box-shadow:inset 0px 0px 0px #00000093;
    transition: all 0.2s ease-in-out;
}
.cont-top-right:hover{
    box-shadow:inset 2px 2px 50px #00000093;
}
.cont-bottom{
    width: 100vw;
    height: 40vh;
    background: teal;
    display: flex;
    align-items: center;
    box-shadow:inset 0px 0px 0px #00000093;
    transition: all 0.2s ease-in-out;
}
.cont-bottom:hover{
    box-shadow:inset 2px 2px 50px #00000093;
}
img{
    width:30vw;
    object-fit: contain;
    object-position: right;
}

@media screen and (max-width:800px) {
    .cont-top{
        flex-direction: column;
    }
    h1{
        font-size: 30px;
        z-index: 999;
    }
    button{
        font-size: 14px;
        padding: 8px 20px;
    }
    .imgs{
        width:220px;
        height: 220px;
        position: absolute;
        right: 0;
        z-index: 99;
    }
    .imgs2{
        width: 500px;
    }
    .container div div div{
        position: absolute;
        z-index: 999;
        width: fit-content;
    }
}
