html,
body {
  font-family: "Altertype", Arial, sans-serif;
  margin: 0;
  padding: 0;
  overflow: hidden;
  text-align: center;
  height: 100vh;
}

@font-face {
	font-family: "Altertype";
	src: url('../altertype-Regular.otf') format('opentype');
	font-display: swap;
}

h1 {
  font-size: clamp(30px, 6vw, 40px);
  opacity: 0.33;
  mix-blend-mode: overlay;
  margin: 0;
  padding: 20px 0;
}

img {
  border-radius: 50%;
  width: 100px;
 }

.container {
  width: 100%;
  height: 100vh;
  text-align: center;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
}

.slideshow-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  opacity: 0;
  z-index: -1;
}

.slideshow-bg.active {
  opacity: 1;
}

.button {
  mix-blend-mode: difference;
  color: white;
  background-color: transparent ;
  border-radius: 10px;
  width: 100%;
  padding: clamp(16px, 4vw, 32px);
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: clamp(16px, 4.5vw, 35px);
  margin: 0px 0px;
  cursor: pointer;
}

.button:hover {
  mix-blend-mode: multiply;
  background-color: black;
  color: white;
  text-decoration: none;
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.button:focus {
  outline: 2px solid white;
  outline-offset: 2px;
}


/* Responsive typography now handled by clamp() - no media queries needed */