* {
  color: white !important;
  font-family: 'Segoe UI Variable', 'Segoe UI', system-ui, -apple-system, sans-serif !important;
}

body {
  background: #202020 url('../img/me.jpg') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
}

h1 {
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: 0;
  margin: 20px 0;
  background: linear-gradient(90deg, #7a8c52 0%, #5a7a42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

a:not(.button) {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 30px 0 15px;
  display: block;
  color: #7a8c52 !important;
}

p {
  background: rgba(255, 255, 255, 0.0605);
  backdrop-filter: saturate(180%) blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.0837);
  border-radius: 8px;
  padding: 16px 20px !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14), 0 0 2px rgba(0, 0, 0, 0.12);
  transition: all 0.167s cubic-bezier(0.1, 0.9, 0.2, 1);
}

p:hover {
  background: rgba(255, 255, 255, 0.0837);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.18), 0 0 2px rgba(0, 0, 0, 0.12);
}

.special {
  background-color: rgba(245, 245, 245, 1);
  opacity: .8;
}

.button {
  display: inline-block;
  padding: 11px 20px;
  margin: 16px 8px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.0605);
  backdrop-filter: saturate(180%) blur(40px);
  border: 1px solid rgba(107, 117, 85, 0.4);
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14), 0 0 2px rgba(0, 0, 0, 0.12);
  transition: all 0.167s cubic-bezier(0.1, 0.9, 0.2, 1);
  font-weight: 600;
  letter-spacing: 0;
  font-size: 0.875rem;
}

.button:hover {
  background: rgba(255, 255, 255, 0.0837);
  border-color: rgba(107, 117, 85, 0.6);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.18), 0 0 2px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.button:active {
  background: rgba(255, 255, 255, 0.0419);
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.14);
  transition: all 0.067s cubic-bezier(0.1, 0.9, 0.2, 1);
}

.collapsible-header {
  display: inline-block;
  padding: 11px 20px;
  margin: 16px 8px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.0605);
  backdrop-filter: saturate(180%) blur(40px);
  border: 1px solid rgba(107, 117, 85, 0.4);
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14), 0 0 2px rgba(0, 0, 0, 0.12);
  transition: all 0.167s cubic-bezier(0.1, 0.9, 0.2, 1);
  font-weight: 600;
  letter-spacing: 0;
  cursor: pointer;
  font-size: 0.875rem;
}

.collapsible-header:hover {
  background: rgba(255, 255, 255, 0.0837);
  border-color: rgba(107, 117, 85, 0.6);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.18), 0 0 2px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.collapsible-header:active {
  background: rgba(255, 255, 255, 0.0419);
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.14);
}

.collapsible-content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.267s cubic-bezier(0.1, 0.9, 0.2, 1), opacity 0.167s ease;
  opacity: 0;
}

.collapsible-content.active {
  max-height: fit-content;
  max-width: 800px;
  opacity: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.0605);
  backdrop-filter: saturate(180%) blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.0837);
  border-radius: 8px;
  padding: 24px;
  margin: 16px auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.18), 0 0 2px rgba(0, 0, 0, 0.12);
}

.collapsible-content h3,
.collapsible-content h4 {
  color: #7a8c52 !important;
  margin-top: 16px;
  font-weight: 600;
}

footer p {
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  padding: 10px !important;
  font-size: 0.875rem;
}

footer a {
  font-size: 0.875rem !important;
  text-decoration: underline;
  color: #7a8c52 !important;
}