
body {
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    font-size: 20px;
    line-height: 0.7;
    background-color: #000;
    color: #ffffff;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-image: url('../images/headerbg.jpg'); /* Substitua pelo caminho da sua imagem */
    background-size: cover;
    background-position: center;
    color: white; /* Para melhor contraste de texto */
}

.avatar img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.name {
    font-size: 38px;
    font-family: 'Teko', sans-serif;
    font-weight: 400;
    padding-left: 20px;
}

.namedescription {
    font-size: 18px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 200;
    padding-left: 20px;
}		

a {
	color: #E1B995;
	text-decoration: none; /* para remover o sublinhado */
	}
a:hover {
	color: #C68553;
	}
	
footer {
	/*position: fixed;
	bottom: 10; /* position: fixed and bottom: 0 makes sure it stays fixed at the bottom of the screen */
	width: 100%; /* ensures it spans the entire width of the screen */
	text-align: center;
	padding: 5px;
	background-color: #333;
	color: white;
}

/* Se quiser estilizar ainda mais o texto do rodapé */
footer p {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    padding: 8px;
}
/* ================== FORMULARIO DE CONTATOS ===================*/



.form-container {
    max-width: 300px;
    margin: auto;
}

.form-group {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 3px;
    font-size: 12px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 5px;
    background-color: #333333;
    color: #ffffff;
    margin-top: 5px;
}

input[type="submit"] {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

.success,
.error {
    padding: 8px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.success {
    background-color: #28a745;
}

.error {
    background-color: #dc3545;
}

/* Make label for message more compact */
label[for="message"] {
    margin-bottom: 2px;
}

/* Adjust margin for error messages */
.error {
    margin-bottom: 10px;
}
/* Frontpage links colors */
.tiffany-green {
            color: #47C7FC;
            font-family: 'Arial', sans-serif;
            font-size: 16px;
            text-decoration: none; /* Remove underline */
        }

        .tiffany-green:hover {
            color:FF8000;
            text-decoration: underline; /* Add underline on hover */
        }

        p.tiffany-green-link {
            margin-bottom: 5px; /* Reduce spacing between paragraphs */
        }

