
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body, h1, h2, h3, a, input, select {
    font-family: 'Inter', sans-serif;
}


/* Botoes de formulário */
input[type="submit"] {
    background-color: #3498db;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
input[type="submit"]:hover {
    background-color: #2980b9;
}
nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 10px;
}

nav ul li {
    list-style: none;
    margin: 0 15px;
}
a:hover, input[type="submit"]:hover {
    transition: background-color 0.3s ease, color 0.3s ease;
}