@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&display=swap" rel="stylesheet');
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

*{
    margin: 0;
    
    padding: 0;
    box-sizing: border-box;
}
ml{
    font-family: 'Playfair Display';
}
body{
    background-color: black;
}
.section1{
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(19, 18, 18);
}
.container{
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.left{
    width: 60%;
    height: 600px;
    border-radius: 8px;
    background: url(./Images/retroComp.jpg) no-repeat center / cover;
}
.right{
    width: 40%;
    min-height: 400px;
    background: rgb(238, 174, 202);
    background: -webkit-linear-gradient(to right, #cf53b0 #70cce5);
    background: linear-gradient(to right, #cf53b0, #70cce5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-radius: 8px;
    color: black;
    margin-left: -100px;/*move right part*/
    border: 1px solid;
    box-shadow: 5px 10px #fbd3e9;
}
.right h1{
    font-size: 28px;
    font-weight: lighter;
    font-family: 'Press Start 2P';
}
.right p{
    margin: 20px 0;
    font-weight: 500;
    line-height: 25px;
    font-size: 20px;
    font-family: 'Press Start 2P';
    font-size: 13px;

    font-weight: lighter;
}
.right a{
    text-decoration: none;
    text-transform: uppercase;
    background-color: hotpink;
    color: black;
    padding: 10px 20px;
    display: inline-block;
    letter-spacing: 2px;
    border-radius: 25px;
    font-family: 'Press Start 2P';
    font-size: 10px;
    font-weight: lighter;
}
@media only screen and (max-width: 768px){

    .container{
        flex-direction: column;
        width: 100%;
        margin: 0 20px;
    }
    .left{
        width: 100%;
        height: 400px;
    }
    .right{
        width: 80%;
        margin: 0;
        margin-top: -100px;
    }
}