* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
}

body {
    color: black;
    padding: 30px;
    background-color: beige;
}

/* Gradiente dos primeiros parágrafos */
#grad {
    background-image: linear-gradient(135deg, red, orange, yellow);
    color: white;
    padding: 15px;
    border-radius: 18px;
    height: 90px;
    width: 70%;
    margin: auto;
    margin-bottom: 40px;
    border: 2px solid brown;
    text-align: center;
}

#grad p {
    font-size: 17px;
    margin-top: 2px;
}

div.transform {
    width: 200px;
    height: 100px;
    margin: auto;
    margin-bottom: 30px;
    padding: 25px;
    background-color: lightblue;
    transition: all 0.5s ease-in-out;
    border-radius: 10px;
    text-align: center;
    border: 2px solid navy;
}

.transform:hover {
    transform: translate(10px, 20px);
    transform: scale(1.5);
    background-color: red;
    color: white;
    font-family: Arial, sans-serif;
}

div.transition {
    width: 200px;
    height: 200px;
    background-color: lightcoral;
    transition: all 1s;
    padding: 15px;
    border-radius: 10px;
    border: 2px dashed black;
    margin: auto;
    margin-bottom: 40px;
    text-align: center;
}

.transition:hover {
    height: 300px;
    padding: 20px;
    font-size: 20px;
    background-color: lightseagreen;
    font-family: Arial, sans-serif;
    color: white;
}

.contato {
    max-width: 600px;
    margin: auto;
    background-color: white;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    flexbox: center;
    border: 3px solid darkred;
}

.contato h3 {
    font-size: 35px;
    color: darkred;
    margin-bottom: 10px;
}

.contato p {
    margin-bottom: 15px;
}

.nome_email {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

label {
    color: darkblue;
    margin-top: 5px;
}

input,
textarea {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid gray;
    background-color: whitesmoke;
}

textarea {
    margin-top: 15px;
    resize: none;
}

input:focus {
    color: red;
    font-size: 15px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: lightyellow;
}

.radio-group {
    margin-top: 10px;
    margin-bottom: 15px;
}

.radio-group label {
    margin-right: 15px;
    color: black;
}

button {
    padding: 10px 20px;
    background-color: darkred;
    color: white;
    border: none;
    border-radius: 10px;
    margin-top: 10px;
    margin-right: 10px;
    transition: 0.5s;
}

button:hover {
    background-color: red;
    transform: scale(1.1);
}

button[type="reset"] {
    background-color: gray;
}

button[type="reset"]:hover {
    background-color: black;
}