@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: #fff;
}

nav {
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-item: center;
    justify-content: space-between;
    height: 100%;
}

.container {
    display: flex;
    align-items: center;
    flex-direction: column;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #6314A8;
}

header div {
    width: 100%;
    padding: 10px;
    max-width: 1500px;
}

header div img {
    width: 200px;
    height: auto;
}

main {
    display: flex;
    flex-direction: column;
    max-width: 1500px;
    align-items: center;
    width: 100%;
    margin-top: 30px;
}

#content {
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: column;
}

main h1 {
    font-size: 36px;
    color: #000;
}

main h2 {
    font-size: 19px;
    color: #000;
    font-weight: 200;
    margin-top: 5px;
}

main input {
    width: 90%;
    background-color: #f5f5f5;
    border: none;
    padding: 24px 15px;
    font-size: 15px;
    color: #000;
    margin-top: 25px;
}

main h3 {
    font-size: 22px;
    color: #000;
    font-weight: 500;
    margin-top: 40px;
    text-decoration: underline;
}

.content-info {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F4F0FF;
    padding: 40px 30px;
    width: 80%;
    text-align: center;
    border-radius: 30px;
    margin-top: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.content-info p {
    font-size: 17px;
    color: #000;
    font-weight: 200;
}

.button {
    background-color: #6314A8;
    border: none;
    color: #fff;
    padding: 16px 32px;
    width: 50%;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 19px;
    transition-duration: 0.4s;
    cursor: pointer;
    margin-top: 50px;
    border-radius: 30px;
}

.button1 {
  background-color: #fff;
  color: #000;
  text-decoration: none;
  border: 2px solid #6314a8;
}

.button1:hover {
  background-color: #6314a8;
  color: #fff;
}

a {
  color: #000;
  text-decoration: none;
}

.button1:hover a {
  color: #fff;
}

main img {
    width: 300px;
    height: auto;
    margin-top: 30px;
}

.box-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 25px;
    align-items: center;
    justify-content: center;
}

.box-cards img {
    width: 110px;
    height: auto;
    margin: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.box-cards img:hover {
    scale: 1.03;
}

.animation {
    width: 220px !important;
    height: auto;
    margin-bottom: 16px;
}

.text-loading {
    font-size: 20px;
    color: #6314A8;
    margin-top: 20px;
    text-align: center;
}

.box-response {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.box-response h1 {
    font-size: 26px;
    color: #000;
}

.box-response h2 {
    font-size: 19px;
    color: #000;
    font-weight: 200;
    margin-top: 5px;
    text-decoration: underline;
}

.box-response h4 {
    font-size: 21px;
    color: #6314A8;
    font-weight: 500;
    margin-top: 15px;
}

.box-response div {
    display: flex;
    flex-direction: row;
    margin-top: 14px;
}

.box-response img {
    width: 180px;
    height: auto;
}

.box-response p {
    font-size: 16px;
    margin-left: 20px;
    color: #000;
    margin-top: 35px;
    font-weight: 400;
}

.box-response h5 {
    font-size: 28px;
    color: #000;
    margin-top: 40px;
    text-align: center;
    font-weight: 600;
}

.box-response a {
    text-align: center;
    margin:0 0 15px 0;
}

.box-response a img {
    width: 350px;
    height: auto;
    transition: 0.3s;
}

.box-response a img:hover {
    scale: 1.03;
}

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

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: #fff;
}

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

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

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

@media only screen and (max-width: 1080px) {
    header div img {
        width: 140px;
        height: auto;
    }

    main {
        margin-top: 25px;
        width: 90%;
    }

    main h1 {
        font-size: 24px;
    }

    main h2 {
        font-size: 15px;
    }

    main input {
        padding: 22px 15px;
        font-size: 14px;
        width: 100%;
    }

    main h3 {
        font-size: 16px;
        margin-top: 25px;
        text-align: center;
    }

    .content-info {
        padding: 20px;
        width: 100%;
    }

    .content-info p {
        font-size: 15px;
    }

    .button {
        padding: 16px 32px;
        width: 100%;
        font-size: 17px;
        margin-top: 30px;
        background-color: #6314A8;
        color: #fff;
    }

    .button1 {
        background-color: #6314A8;
        color: #fff;
        border: none
    }
    
    a {
        color: #fff;
    }

    main img {
        width: 250px;
    }

    .box-cards {
        margin-top: 15px;
    }

    .box-cards img {
        width: 80px;
    }

    .animation {
        width: 150px !important;
    }
    
    .text-loading {
        font-size: 17px;
    }

    .box-response h1 {
        font-size: 20px;
    }

    .box-response h2 {
        font-size: 16px;
    }

    .box-response h4 {
        font-size: 18px;
        margin-top: 15px;
    }

    .box-response div {
        flex-direction: column;
        margin-top: 0;
    }

    .box-response img {
        width: 130px;
    }

    .box-response p {
        font-size: 15px;
        margin-left: 0;
        margin-top: 30px;
    }

    .box-response h5 {
        font-size: 25px;
        margin-top: 30px;
    }

    .box-response a {
        text-align: center;
        margin: 0 0 15px 0;
    }

    .box-response a img {
        width: 90%;
        height: auto;
    }

    footer .content-footer text {
        font-size: 12px;
    }

    footer .content-footer div .link {
        font-size: 12px;
    }
}