:root {
  --primary-color: #33668b;
  --secondary-color: #fafafa;
  --shadow-color: #00000033;
  --font-family: 'Arial, sans-serif';
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #33668b;
  background: linear-gradient(
    15deg,
    rgba(51, 102, 139, 1) 0%,
    rgba(66, 60, 43, 1) 36%,
    rgba(62, 70, 66, 1) 62%,
    rgba(51, 102, 139, 1) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.title-text {
  font-family: var(--font-family);
  color: var(--secondary-color);
  text-align: center;
  padding: 20px;
}
header {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h4 {
  font-size: 16px !important;
  width: 500px;
  text-align: center;
  color: var(--secondary-color) !important;
}
.perfil-img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  padding: 5px;
  border: 4px solid var(--secondary-color);
}

ul {
  list-style: none;
  padding: 0 !important;
  margin: 0;
  width: 500px;
}
section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
section li {
  margin-top: 10px;
  padding: 16px 14px;
  background-color: var(--secondary-color);
  border-radius: 8px;
  box-shadow: 0 4px 8px var(--shadow-color);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  width: 100%;
  text-align: center;
}

section li:hover {
  transform: scale(1.1);
  transition: 0.5s ease;
}

a {
  text-decoration: none !important;
  color: var(--primary-color);
  font-size: 1.2em;
  display: block;
  align-items: center;
}
span {
  padding: 10px;
}
