body,
html {
    font-family: "Lato", sans-serif;
    text-align: center;
}

* {
    padding: 0;
    margin: 0;
}

ul, li {
    display:block;
    padding: 0;
    margin: 0;
}

/* header */

.header {
    height: 100vh;
    background: #fcecb0;
    overflow: hidden;
}

.header-menu {
    padding:20px;
    background-color: #fcecb0;
}

.header-menu__item-link {
    text-decoration: none;
    color: #050a75;
    font-size: 18px;
    font-weight: 600;
    margin: 0 60px;
}

.offer {
    margin-top: 380px;
}

.offer__title {
    font-size: 40px;
    color: #050a75;
}

.offer__intro {
    color: #050a75;
    font-size: 25px;
}

/* the second block*/

.projects {
    height: 100vh;
    background-color: white;
}

.project-title {
    color: #050a75;
    padding-top: 50px;
}

/* boxes */

.project-box {
    border: 3px solid #8398f7;
    margin-top: 45px;
    width: auto;
    max-width: 100%;
}



.project-box__title {
    font-weight: bold;
    font-size: 20px;
    color: #47136b;
    border-top: 2px solid #8398f7;
    display: block;
}

.project-box__picture {
    width: auto;
    max-width: 100%;
}

.project-btn {
    margin-top: 70px;
    justify-content: center;
    color: #47136b;
    border: 1px solid #47136b !important;
    font-weight: 500 !important;
}


/* contact section */

.contact {
    height: 100vh;
    background-color: #fcecb0;
}

.contact__information {
    padding-top: 200px;
}

.contact__information-title {
    color: #030766;
}

.contact__information-offer {
    color: #050a75;
    font-size: 20px;
}

.contact-box {
    padding-top: 200px;
    display: flex;
    justify-content: center;
}

.contact-box__inner {
    text-decoration: none;
    font-weight: bold;
    margin: 0 35px 45px 35px;
    border: 2px solid #050a75;
    border-radius: 100%;
    height: 100px;
    width: 100px;
    line-height: 100px;
    background-color: #cebffc;
    color: #77404f;
}

/* footer section */

.footer {
    padding-top: 15px;
    background: #22313f;
    color: white;
    line-height: 40px;
}

.about {
    color: #fff;
    text-decoration: none;
}



@media screen and (max-width: 1024px) {
    .project-title {
        padding-top:80px;
    }

    .contact__information {
        padding-top: 100px;
    }
    .contact__me {
        padding-top: 160px;
    }
}

@media screen and (max-width: 992px) {
    .header-menu {
        display: flex;
        justify-content: center;
    }
    .project-title {
        padding-top: 20px;
        padding-bottom: 0;
    }
    .contact__information {
        padding-top: 120px;
    }
    .project-btn {
        margin-top: 100px;
    }

}

@media screen and (max-width: 768px) {
    .project-title {
        padding-top:100px;
    }
    .contact-box__inner {
        font-size: 14px;
        border-radius: 5px;
    }


}

@media screen and (max-width: 576px) {
    .header-menu__item-link {
        margin: 0 30px;
    }
    .contact__information {
        padding-top: 150px;
    }
    .contact-box {
        padding-top: 100px;
    }
    .contact-box--git {
        padding-top: 50px;
    }
}

@media screen and (max-width: 480px) {
    .header-menu {
        display: flex;
        justify-content: center;
    }
    .project-title {
        padding-top: 25px;
    }
    .project-box__title {
        font-size: 16px;
    }
    .project-btn {
        margin-top: 60px;
    }
    .projects {
        height: 70vh;
    }
    .contact-box__inner {
        margin: 0;
    }

}


