html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow-x: hidden; /* Prevent horizontal scroll */
  box-sizing: border-box;
}

/* LAYOUT */

body {
  animation: 
    background-transition 30s linear 0s infinite,
    color-transition 25s linear 0s infinite;
  
  font-size: 125%;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  

  min-height: 100vh;
  width: 100vw;
  margin: 0 auto;

  text-decoration: none;
}

.content {
  text-align: center;
}

/*HOME PAGE */

.fullscreen-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center; /* Horizontal center */
  align-items: center;     /* Vertical center */
  margin: 0 auto;
}

.vera-kwint {
  display: flex;
  text-align: center;
  gap: 5rem;
}

.vera-kwint div {
  width: 15em;
  padding-left: 1em;
  padding-right: 1em;
}

.vera-kwint .mail {
  position: relative;
  cursor: pointer;
  transition: font-weight .3s ease,
   transform .3s ease;
}

.vera-kwint .mail.copied::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
}

.vera-kwint .mail::after {
  animation: 
    background-transition-inverse 30s linear 0s infinite,
    color-transition-inverse 25s linear 0s infinite;
  content: 'Copied!';
  position: absolute;
  top: 3em;
  left: 50%;
  transition: all .4s ease;
  transform: translateX(-50%) translateY(-10px);
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: normal;
  white-space: nowrap;
  opacity: 0;
}

.vera-kwint .mail.copied::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.vera-kwint .mail:hover {
  font-weight: 900;
}

.vera-kwint .mail:active {
  transform: skew(-2deg) rotate(4deg);;
}

.mail-icon {
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  margin-right: 0.25em;
  color: inherit;
}

@keyframes background-transition {
	0% {
		background-color: #ffdcdc;
		border-color: #ffdcdc;
	}
	33% {
		background-color: #ffe5e5;
		border-color: #ffe5e5;
	}
	66% {
		background-color: #ffeeee;
		border-color: #ffeeee;
	}
	100% {
		background-color: #ffdcdc;
		border-color: #ffdcdc;
	}
}

@keyframes color-transition {
	0% {
		color: #641B2E;
	}
	33% {
		color: #641b5e;
	}
	66% {
		color: #9d5366;
	}
	100% {
		color: #641b2e;
	}
}

@keyframes background-transition-inverse {
	0% {
		background-color: #641B2E;
		border-color: #641B2E;
	}
	33% {
		background-color: #641b5e;
		border-color: #641b5e;
	}
	66% {
		background-color: #9d5366;
		border-color: #9d5366;
	}
	100% {
		background-color: #641b2e;
		border-color: #641b2e;
	}
}

@keyframes color-transition-inverse {
	0% {
		color: #ffdcdc;
	}
	33% {
		color: #ffe5e5;
	}
	66% {
		color: #ffeeee;
	}
	100% {
		color: #ffdcdc;
	}
}

/*ABOUT PAGE*/

.about-wrapper {
  padding-top: 3em;
}

.img-container {
  width: 20vw;
  margin: auto;
  padding-top: 1em;
  padding-bottom: 2em;
}

.image {
  width: 100%;
}



/* NAVIGATION */

.site-nav {
  position: fixed;
  z-index: 100;
  display: flex;
  width: 100%;
  text-align: center;
  padding: 1em;
  padding-left: 2em;
  animation: color-transition 25s linear 0s infinite;
}

.site-nav a {
  animation: color-transition 25s linear 0s infinite;
  display: block;
  padding: 1rem;
  text-decoration: none;
  transition: font-weight .3s ease;
}

.site-nav a:visited {
  color: inherit;
}

.site-nav a:hover {
  font-weight: 800;
}

.site-nav .logo {
  font-weight: bold;
  width: 10%;
  padding-left: 0;
}

.main-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 48rem) {
  .site-nav,
  .main-menu {
    flex-direction: column;
  }

   .vera-kwint {
    width: 80%; /* More horizontal space */
    height: auto; /* Flexible height */
    flex-direction: column; /* Stack items */
    top: 80px; /* Adjust for mobile nav height */
  }
}

/* FOOTER */

.site-footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  animation: color-transition 25s linear 0s infinite;
  text-align: center;
  font-size: .8rem;
}

/* LISTS */

.post-snippet {
  margin-bottom: 1rem;
}

.post-snippet h3 {
  margin-bottom: 0.25rem;
}
