@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body{
    max-height: 100vh;
    width: 100%;
}

.content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 100px;
}

.left img{
    display: flex;
    justify-content: center;
    align-items: baseline ;
    width: 250px;
}
.mid img{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 300px;
}
.right img{
    display: flex;
    justify-content: center;
    align-items: baseline;
    width: 250px;
}

.bot img{
    width: 250px;
    margin-left: 30px;
}

.contact__btn{
    position: absolute;
    bottom: 50px;
    right: 50px;
}

.contact__btn a{
    text-decoration: none;
    color: black;
    padding: 10px 20px;
    border: 1px solid black;
    border-radius: 50px;
}
.contact__btn a:hover{
    color: #ffffff;
    background-color: black;
    transition: .5s ease-in-out;
}

@media screen and (max-width:669px){
    .content{
        width: 100%;
    }
    .left img{
        width: 100px;
    }
    .mid img{
        width: 150px;
    }
    .right img{
        width: 100px;
    }
}