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

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

body {
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #f1f1f1;
}

header {
    display: flex;
    flex-direction: row;
    width: 100%;
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.1);
    align-items: center;
    justify-content: center;
    padding: 28px 0;
    background-color: #001bde;
}

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

header div {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1000px;
}

header div h1 {
    color: #fff;
    font-size: 30px;
}

@media only screen and (max-width: 1080px) {
    header div h1 {
        font-size: 18px;
    }
}

main {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1000px;
    margin-bottom: 150px;
}

@media only screen and (max-width: 1080px) {
    main {
        width: 90%;
    }
}

main h2 {
    color: #000;
    font-size: 23px;
    margin-top: 50px;
    border-left: 4px solid #00de0b;
    padding-left: 15px;
}

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

main h3 {
    color: #000;
    font-size: 23px;
    margin-top: 50px;
    border-left: 4px solid #00de0b;
    padding-left: 15px;
}

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

main p {
    color: #3e3e3e;
    font-size: 19px;
    margin-top: 15px;
}

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

main label {
    color: #3e3e3e;
    font-size: 17px;
    font-weight: 600;
    margin-top: 25px;
}

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

main img {
    width: 330px;
    height: 100%;
    margin: 15px 0;
}

@media only screen and (max-width: 1080px) {
    main img {
        width: 80%;
        height: 100%;
    }
}

main ul {
    margin: 20px 0 10px 30px;
}

@media only screen and (max-width: 1080px) {
    main ul {
        margin: 17px 0 8px 20px;
    }
}

main ul li {
    margin-top: 5px;
    color: #3e3e3e;
    font-size: 18px;
    font-weight: 600;
}

@media only screen and (max-width: 1080px) {
    main ul li {
        margin-top: 10px;
        font-size: 14px;
    }
}

main .btn {
    display: flex;
    text-align: center;
    width: 100%;
    background-color: #001bde;
    padding: 18px 32px;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: 0.4s;
}

@media only screen and (max-width: 1080px) {
    main .btn {
        margin-top: 25px;
        font-size: 16px;
    }
}

main .btn:hover {
    box-shadow: 0 5px 16px 0 rgba(0,0,0,0.2);
}

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

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

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

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

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

footer .content-footer div .link {
    font-size: 14px;
    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;
}