@import url('https://fonts.googleapis.com/css2?family=Winky+Rough:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    --primary: #000000;
}

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
body {
    background: #000000;
    color:#ffffff;
    font-family: "Winky Rough", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.header {
    display:flex;
    justify-content: center;
    margin-top: 100px;
}

.header h2 {
    color: #61d257;
    font-family: "Winky Rough", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size:50px;
}
.content{
    display:flex;
}
.content > div{
    width:50%;
}
.content .left img{
    width:50%;
}

.container{
    display: flex;
    justify-content: center;
    margin-top: 100px;
}
.container > div{
    width: 50%;
}

@media (max-width:765px) {

    .container{
        margin-top: 20px;
    }
    .container >div{
        width:100%;
        padding:10px;
    }
}