From 652d38c56788bb34b2207b657785269e070685be Mon Sep 17 00:00:00 2001 From: RaphaelhOliveira <159036431+RaphaelhOliveira@users.noreply.github.com> Date: Wed, 27 Mar 2024 19:14:58 -0300 Subject: [PATCH] Update contato.css --- contato.css | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/contato.css b/contato.css index a0ba705..37b4d99 100644 --- a/contato.css +++ b/contato.css @@ -93,15 +93,18 @@ textarea::-webkit-scrollbar-thumb { } #thankYouMessage { display: none; /* Inicialmente oculto */ - position: fixed; - top: 0; - left: 0; - width: 100%; - height: 100%; - background-color: black; /* Alterado para preto */ - color: white; - font-size: 24px; - display: flex; - justify-content: center; - align-items: center; + color: green; /* Cor do texto */ + font-size: 18px; /* Tamanho da fonte */ + margin-top: 10px; /* Espaçamento superior */ + animation: fadeIn 1s ease-in-out; /* Animação de fadeIn */ +} + +/* Animação de fadeIn */ +@keyframes fadeIn { + from { + opacity: 0; + } + to { + opacity: 1; + } }