body {
  padding-top: 40px;
  background-color: black;
  background-image: url('NieR4.jpg');
  background-size: cover;
  background-position: center; 
  background-repeat: no-repeat;
  background-attachment: fixed; 
  color: white;
  font-family: Verdana;
}

h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 3em;
  text-align: center;
  color: lightgray;
  margin-top: -10px;
}

h2 {
  font-family: "Abril Fatface", serif;
  font-size: 2.2em;
  text-align: left;
  color: darkred; 
}

h3 {
  font-family: verdana, sans-serif;
  margin-top: -5px;
  margin-bottom: 40px;
}

p {
  font-family: Verdana, sans-serif;
  margin-top: -5px;
}

.video-text-container {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 50px auto;
  justify-content: center;
  max-width: 850px;
}

.video-container {
  display: flex;
  justify-content: center;
  margin-top: 40px 0;
}

.video-container iframe {
  width: 230px;
  height: 230px;
}

.video-text {
  max-width: 400px;
}

h4 {
  font-family: 'Abel', sans-serif;
  font-size: 1.4em;
  font-weight: 400;
  color: white;
  margin-top: -5px;
  margin-bottom: -5px;
}

.center-image {
  display: block;
  margin: 0 auto;
  width: 800px;
  height: auto;
}

.centered-block {
  width: 200px;
  margin: 0 auto;
  text-align: left;
}

.menu-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.menu-link {
  text-decoration: none; /* remove underline */
  color: inherit;        /* inherit color from parent (white) */
}

.image-box {
  position: relative;
  display: flex;
  transition: transform 0.3s ease;
}

.info-box {
  box-sizing: border-box;
  width: 470px;
  height: 250px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0 15px 15px 0; 
  margin-left: -20px; 
  transition: transform 0.3s ease;
  z-index: 1;
  display: flex;
  flex-direction: column;  
  justify-content: flex-start; 
  align-items: flex-start;     
  text-align: left;
  padding: 15px;
  color: white;
}

.info-text {
  margin: 5px 0;
  margin-left: 20px;
  font-family: Verdana, sans-serif;
  font-size: 14px;
  transition: transform 0.3s ease;
  max-width: 350px;
  word-wrap: break-word;
}

.image-box img {
  width: 250px;
  height: 250px;
  border-radius: 15px;
  display: block;
  transition: transform 0.3s ease;
  z-index: 2;
  position: relative;
}

.image-box:hover img {
  transform: scale(1.25);
}

.image-box:hover .info-box {
  transform: scale(1.15);
}

.image-box:hover .info-text {
  transform: translateX(50px);
}

.header-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.image-wrapper {
  position: relative;
  display: inline-block;
}

.center-image {
  width: 800px;
  height: auto;
  border-radius: 10px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  z-index: 1;
  border-radius: 10px;
}

.header-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  font-family: "Poppins", sans-serif;
  z-index: 2;
}
