html{
	background-color: #FFFFFF;
}

body {
	font-family: "Roboto", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-variation-settings: "wdth" 100;
}

.container {
	text-align: center;
	padding: 20px;
}

img {
	width: 20%;
    margin-bottom: 10px;
    border-radius: 50%;
    box-shadow: 0 5px 20px 5px rgba(0, 0, 0, 0.1);
}

h1 {
	margin-bottom: 15px;
	font-weight: 300;
	font-size: 30px;
}

h2 {
	font-weight: 400;
	font-size: 20px;
	margin: 0 0 20px 0;
	padding: 0 0 10px 0;
	color: #4e6961;
}

h3 {
	color: #82AFA1;
	font-weight: 500;
	font-size: 18px;
	margin: 0;
	padding: 0 0 10px 0;
}

p.assinatura {
	color: #e2a18d;
}


/* Seção de Links (botões) */
.links {
	width: 600px;
	list-style-type: none;
	padding: 0;
	margin: 0;
	text-align: center;
    display: inline-flex;
    flex-direction: column; /* Organiza os botões em coluna */
    gap: 15px; /* Espaço entre os botões */
    padding-bottom: 30px;
}

/* Estilização dos botões de link */
.links a {
    display: block; /* Ocupa a largura total da coluna */
    text-decoration: none;
    color: #4e6961; /* Cor do texto do botão */
    background-color: #82afa1; /* Cor principal do botão (azul) */
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease; /* Transição suave para o efeito hover */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra suave */
}

/* Efeito ao passar o mouse (Hover) */
.links a:hover {
    background-color: #d8e6e2; /* Cor ligeiramente mais escura no hover */
    transform: translateY(-2px); /* Efeito de 'levantar' */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Sombra um pouco mais forte */
}


@media (max-width: 600px) {
	.container {
		width: 90%;
	}

	.links {
		width: 100%;
	}

	.links a {
		font-size: 16px;
	}

	img {
		width: 60%;
	}

	h1 {
		font-size: 24px;
	}

	h2 {
		font-size: 14px;
	}

	h3 {
		font-size: 16px;
	}
}
