@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

@media only screen and (max-width: 1080px) {
    body {
        background-color: #fff;
    }
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    z-index: 1;
    padding: 8px 15px;
}

@media only screen and (max-width: 1080px) {
    header {
        padding: 8px 15px;
    }
}

header .box-title {
    display: flex;
    width: 100%;
    max-width: 1200px;
    align-items: center;
    justify-content: center;
}

header .box-title a {
    text-decoration: none;
}

header .box-title a h1 {
    font-size: 30px;
    font-weight: 200;
    text-transform: uppercase;
}

@media only screen and (max-width: 1080px) {
    header .box-title a h1 {
        font-size: 22px;
    }
}

main {
    display: flex;
    max-width: 1200px;
    width: 90%;
    margin: 20px 0 40px 0;
    background-color: #fff;
    flex-direction: column;
}

@media only screen and (max-width: 1080px) {
    main {
        margin: 10px 0 40px 0;
    }
}

main h1 {
    font-size: 33px;
    color: #3e3e3e;
    font-weight: 200;
    margin: 10px 0 0 0;
}

@media only screen and (max-width: 1080px) {
    main h1 {
        font-size: 22px;
    }
}

main h2 {
    font-size: 27px;
    color: #3e3e3e;
    font-weight: 800;
    margin: 10px 0 0 0;

    @media (max-width: 1080px) {
        font-size: 20px;
    }
}

@media only screen and (max-width: 1080px) {
    main h2 {
        font-size: 20px;
    }
}

main h3 {
    font-size: 20px;
    color: #3e3e3e;
    font-weight: 800;
    margin: 10px 0 0 0;
}

@media only screen and (max-width: 1080px) {
    main h3 {
        font-size: 15px;
    }
}

main h4 {
    font-size: 20px;
    color: #3e3e3e;
    font-weight: 600;
    margin: 30px 0 0 0;
}

@media only screen and (max-width: 1080px) {
    main h4 {
        font-size: 15px;
        margin: 25px 0 0 0;
    }
}

main img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin-top: 14px;
}

main p {
    font-size: 20px;
    line-height: 1.6em;
    color: #3e3e3e;
    font-weight: 100;
    margin-top: 20px;
}

@media only screen and (max-width: 1080px) {
    main p {
        font-size: 16px;
        line-height: 1.3em;
    }
}

main .btn {
    padding: 12px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    width: 100%;
    cursor: pointer;
    border-radius: 30px;
    transition: 0.4s;
    margin: 18px 0 0 0;
    border: none;
    justify-content: center;
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 1080px) {
    main .btn {
        font-size: 16px;
        line-height: 1.3em;
        margin: 12px 0 0 0;
    }
}

main .btn:hover {
    box-shadow: 1px 1px 6px 3px rgba(0,0,0,0.2);
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px;
    background-color: #3e3e3e;
}

footer .content-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
}

footer .content-footer text {
    font-size: 15px;
    color: #f1f1f1;
}

@media only screen and (max-width: 1080px) {
    footer .content-footer text {
        font-size: 12px;
    }
}

footer .content-footer div {
    display: block;
    margin-top: 10px;
}

footer .content-footer div .link {
    font-size: 15px;
    color: #b0aeae;
    margin-top: 10px;
    text-decoration: none;
    transition: 0.2s;
}

@media only screen and (max-width: 1080px) {
    footer .content-footer div .link {
        font-size: 12px;
    }
}

footer .content-footer a:hover {
    text-decoration: underline;
    color: #f1f1f1;
}