*{
    padding: 0px;
    margin: 0px;
}
body{
    width: 100%;
    height: 100vh;
    display: flex;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
}
#wrap-left,
#wrap-right{
    flex: 3;
    position: relative;
    transition: .6s ease-in-out;
    display: flex;
    justify-content: center;
}
#wrap-left img,
#wrap-right img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#wrap-left:hover{
    flex: 6;
}
#wrap-right:hover{
    flex: 6;
}
.content{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ps5{
    background: rgba(87, 84, 236, 0.7);
    transition: .3s linear;
    z-index: 1;
}
.xbox{
    background: rgba(43, 43, 43, 0.8);
    transition: .3s linear;
    z-index: 1;
}
.wrap-btn{
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.title{
    font-size: 45px;
    color: #fff;
    padding-bottom: 30px;
    text-align: center;
}
.button{
    padding: 20px 50px;
    border: 3px solid #fff;
    color: #fff;
    width: fit-content;
    cursor: pointer;
}
.ps5-btn:hover{
    background-color: rgb(87, 84, 236);
    border: 3px solid rgb(87, 84, 236);
}
.xbox-btn:hover{
    background-color: rgb(28, 122, 28);
    border: 3px solid rgb(28, 122, 28);
}

@media screen and ( max-width: 980px ) {
    .title{
        font-size: 35px;
    }
    .button{
        padding: 15px 35px;
    }
}
@media screen and ( max-width: 820px ) {
    .title{
        font-size: 28px;
    }
    .button{
        padding: 12px 28px;
    }
}
@media screen and ( max-width: 660px ) {
    .title{
        font-size: 22px;
    }
    .button{
        padding: 8px 20px;
        font-size: 16px;
    }
}
@media screen and ( max-width: 575px ) {
    .title{
        font-size: 18px;
    }
    .button{
        padding: 5px 15px;
        font-size: 15px;
    }
}
@media screen and ( max-width: 400px ) {
    .title{
        font-size: 14px;
    }
    .button{
        padding: 5px 8px;
        font-size: 12px;
    }
}