body,html{
    padding: 0;
    margin: 0;
}
*{
    font-family: Arial, Helvetica, sans-serif;
}
header{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    background:#f8d2bd;
}
header img{
    width: 60px;
    height: auto;
    border-radius: 80px;
}
header h1{
    font-size: 20px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 0;
}
main{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.main_block{
    width: 90%;
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-top: 40px;
}
.main_block img{
    width: 45%;
    height: auto;
    border-radius: 10px;
}
.text{
    width: 50%;
    display: flex;
    flex-direction: column;
}
.text h1{
    font-size: 36px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 0;
}
.text p{
    font-size: 18px;
    font-weight: 400;
}
.two_main_block{
    flex-direction: column;
    width: 90%;
    display: flex;
}
.two_main_block p{
    font-size: 18px;
    font-weight: 400; 
}
footer{
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 16px;
    font-weight: 300;
    color: #000;
    background: linear-gradient(90deg, rgba(250,149,142,1) 0%, rgba(139,195,201,1) 100%);
    padding-top: 20px;
    padding-bottom: 20px;
}
@media screen and (max-width: 900px){
    .main_block{
        flex-direction: column;
        align-items: center;
    }
    .main_block img{
        width: 100%;
        margin-bottom: 30px;
    }
    .text{
        width: 100%;
    }
    .text h1{
        font-size: 24px;
    }
    footer{
        text-align: center;
    }
}