@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}

html,
body {
    min-height: 100%;
}

body {
    background-color: #2a30a0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 3%;
}

.container {
    background-color: #010440;
    width: 800px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 30px;
    box-shadow: 1px 1px 7px #0cff03;

}

.img-logo img {
    position: relative;
    left: 12px;
    width: 250px;
    height: 250px;
    border: 7px solid #0cff03;
    border-radius: 50%;
    object-fit: cover;
}

.content h2 {
    text-align: center;
    font-size: 35px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
    margin-top: 5px;
}

.profession {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #0cff03;
    margin: 10px;
}

.socials {
    box-shadow: 1px 1px 7px 1px #0cff03;
}

.socials,
i {
    background-color: #010440;
    padding: 11px;
    border-radius: 30px;
    display: flex;
    gap: 45px;
    font-size: 50px;
    color: #fff;
}

.socials i:hover {
    color: #0cff03;
    transform: scale(1.2);
}

.message {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    padding: 16px;
    gap: 20px;
}

.message h3 {
    font-size: 25px;
    color: #0cff03;
    letter-spacing: 2px;
}

.message input {
    padding: 15px;
    border-radius: 30px;
    outline: none;
    font-size: 18px;
    color: #000;
}

.message textarea {
    height: 100px;
    border-radius: 10px;
    font-size: 18px;
    color: #000;
    outline: none;
}

.message button {
    padding: 16px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    background-color: #0cff03;
    color: #000;
    border: none;
}

.message button:hover {
    opacity: .8;
}

.finish-content p {
    color: #fff;
    margin-top: 10px;
}

.main-thanks {
    background-color: #010440;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 7%;
    width: 800px;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 1px 1px 7px #0cff03;
}

.thanks {
    color: #fff;
    text-align: center;
}

/* Responsividade */

@media screen and (max-width: 500px) {
    .container {
        display: flex;
        align-items: center;
        width: 350px;
    }

    .img-logo img {
        width: 150px;
        height: 150px;
        position: relative;
        left: 12px;
    }

    .content h2 {
        font-size: 20px;
    }

    .profession {
        font-size: 12px;
        padding-bottom: 20px;
    }

    .socials {
        display: flex;
        /* width: 330px; */
    }

    .socials,
    i {
        font-size: 30px;
        gap: 16px;
    }

    .message h3 {
        font-size: 12px;
        text-align: center;
    }

    .message input {
        padding: 10px;
        border-radius: 30px;
        outline: none;
        font-size: 10px;
        border: none;
        color: #000;
    }

    .message textarea {
        height: 80px;
        border-radius: 10px;
        font-size: 10px;
        color: #000;
        outline: none;
        border: none;
    }

    .message button {
        padding: 10px;
        border-radius: 30px;
        font-size: 12px;
        font-weight: bold;
        letter-spacing: 2px;
        background-color: #0cff03;
        color: #000;
        border: none;
    }

    .message button:hover {
        opacity: .8;
    }

    .finish-content p {
        font-size: 12px;
    }


    .main-thanks {
        display: flex;
        align-items: center;
        width: 350px;
        margin-top: 35%;
    }

    .thanks {
        font-size: 10px;
    }




}