html, body {
    background-color: rgb(13, 49, 110);
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

main{
    flex: 1;
}

.elya{
    border-radius: 50%;
    width: 40%;
    height: 400px;
    margin: 40px auto;
    position: relative;
    box-shadow: 1px 1px 10px;
    background-image: url("../img/elya.jpg");
    background-size:100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

h1 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 60px;
    color: rgb(194, 171, 19);
}

h3 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 45px;
    color: rgb(255, 255, 255);
}

p {
    text-align: center;
    font-size: 25px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: rgb(194, 171, 19);
}

.secao {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    background-color: rgb(63, 139, 165);
    border-radius: 8px;
    box-shadow: 0 10px 5px rgba(0,0,0,0.1);
    width: 300px;
    padding: 15px;
    text-align: center;
}

.card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
}

.card img:hover {
    transform: scale(1.04);
}

.card h3 {
    text-align: 35px;
    margin: 10px 0 5px;
}

.card p {
    font-size: 19px;
    color: rgb(221, 204, 27);
}

form {
    max-width: 600px;
    margin: auto;
    background-color:rgb(63, 139, 165);
    padding: 30px;
    padding-right: 50px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid rgb(204, 204, 204);
    border-radius: 4px;
    font-size: 14px;
}

textarea {
    height: 100px;
    resize: vertical;
}

button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color:  rgb(0, 102, 204);
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: rgb(0, 76, 153);
}

.bodi {
    border: 2px solid rgb(63, 139, 165);
    margin-left: 200px;
    margin-right: 200px;
    border-radius: 8%;
    box-shadow: 0 10px 5px rgba(0,0,0,0.1);
    background-color: rgb(63, 139, 165);
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .elya {
        height: 200px;
        width: 200px;
    }
}

@media screen and (min-width: 1440px) {
    .elya {
        height: 600px;
        width: 600px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 20px;
    }
}

@media screen and (max-width:320px) {
    .bodi{
        width: 200px;
    }
}