*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#ffffff;
}

/* HEADER */

header{
    height:155px;
    background:#f7b400;
    border-top:6px solid #8d6500;
    border-bottom:6px solid #8d6500;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 30px;
}

.title h1{
    color:white;
    font-size:80px;
    font-weight:900;
}

.header-right{
    display:flex;
    align-items:center;
    gap:35px;
}

.turkey-logo{
    height:95px;
}

.html-logo{
    height:120px;
}

/* MAIN */

main{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:80px;

    flex-wrap:wrap;
}

.text h2{
    font-size:72px;
    font-weight:900;
    margin-bottom:20px;
}

.text p{
    font-size:58px;
    line-height:1.08;
}

.image img{
    width:420px;
    max-width:100%;
}

/* MOBILE */

@media(max-width:900px){

    header{
        flex-direction:column;
        height:auto;
        padding:20px;
    }

    .title h1{
        font-size:50px;
        margin-bottom:15px;
    }

    .header-right{
        gap:20px;
    }

    .turkey-logo{
        height:60px;
    }

    .html-logo{
        height:70px;
    }

    main{
        flex-direction:column;
        text-align:center;
        padding:30px;
    }

    .text h2{
        font-size:50px;
    }

    .text p{
        font-size:35px;
    }

    .image img{
        margin-top:40px;
        width:280px;
    }

}