@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Sora:wght@100..800&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Montserrat', sans-serif;
}

main {
    background-color: #f8f8f8;
    padding: 30px 50px 40px 50px;
}

#conteudo {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    text-align: center;
}

#conteudo img {
    width: 35vh;
}

#botoes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

#botoes button {
    background-color: rgb(87, 120, 170);
    border: 1px solid #fff;
    border-radius: 0%;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
}

#botoes button:hover {
    background-color: rgb(77, 106, 150);
    transform: scale(0.95);
    transition:0.4s;
}

h1 {
    margin-bottom: 10px;
}

h3 {
    font-weight: 500;
    margin-bottom: 10px;
}

textarea{
    width: 85vh;
    margin-bottom: 10px;
    font-size: 16px;
}

textarea::placeholder{
    font-family: 'Montserrat', sans-serif;
    padding: 5px 0px 0px 5px;
}

button {
    padding: 15px 30px;
}

p {
    text-align: center;
    margin-top: 20px;
    color: rgb(97, 97, 97);;
}

@media only screen and (max-width: 780px) {

    body {
    height: 120vh;
   }

   section {
    padding: 30px;
   }

   #conteudo img {
    width: 35vh;
   }

   h1 {
    font-size: 27px;
   }

   h3 {
    font-size: 16px;
    line-height: 1.3rem;
   }

   #botoes{
    flex-direction: column;
   }

   #botoes button {
    font-size: 15px;
   }

   textarea{
    width: 53vh;
}
}