body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  background-color: #fff; /* Change body background to white */
}

.header {
  width: 100vw;
  padding-bottom: 2vh;
  background-color: #e4e5e6; /* Header background color */
  display: flex;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /*padding: 10px 0;*/
}

.container {
  width: 90vw; /* Use vw for width */
  max-width: 60vw; /* Use vw for max-width */
  margin: 0 auto;
  padding: 10px;
}

.image-box,
.video-box,
.text-box {
  margin-bottom: 1vh;
}

.text-box p {
  margin-top: 8vh;
  text-align: center;
  font-weight: bold;
}

.video-box video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  margin: 0 auto; /* Center the element */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 4vw;
}

.image-box {
  text-align: center;
}

.image-box img {
  width: 6vw;
  height: auto;
  display: inline-block;
  border-radius: 5px;
  margin: 0 auto; /* Center the element */
}

.header img {
  width: 30vw; /* Larger logo for desktop */
  height: auto;
  margin-top: 2vh;
  transition: width 0.3s; /* Smooth transition */
}

/* Tablet view in portrait mode */
@media (max-width: 1024px) and (orientation: portrait) {
  .container {
    width: 90vw; /* Adjust width for tablets */
    max-width: 80vw; /* Adjust max-width for tablets */
  }

  .video-box video {
    width: 90vw; /* Adjust the value as needed */
    margin: auto; /* Center the element */
    margin-top: 4vh;
  }

  .header img {
    width: auto; /* Adjust size as needed */
    margin: 0 auto;
    margin-top: 2vh;
    margin-left: 2vw;
  }

  .header {
    width: 100vw;
    height: 7vh;
    background-color: #e4e5e6; /* Header background color */
    padding-bottom: 1vh;
    /*padding: 10px 0;*/
  }
  .text-box p {
    margin-top: 5vh;
    text-align: center;
  }
  .image-box img {
    width: 20vw;
    height: auto;
    display: inline-block;
    border-radius: 5px;
    margin: 0 auto; /* Center the element */
  }
}

/* Mobile view in portrait mode */
@media (max-width: 480px) and (orientation: portrait) {
  .container {
    width: 90vw; /* Adjust width for mobile */
    max-width: 90vw; /* Adjust max-width for mobile */
  }
  .video-box video {
    width: 90vw; /* Adjust the value as needed */
    margin: auto; /* Center the element */
    margin-top: 4vh;
  }

  .header img {
    width: auto; /* Adjust size as needed */
    height: auto;
    margin: 0 auto;
    margin-top: 1vh;
    margin-left: 2vw;
  }
  .header {
    width: 100vw;
    height: 5vh;
    background-color: #e4e5e6; /* Header background color */
    padding-bottom: 1vh;
  }
  .text-box p {
    margin-top: 5vh;
    text-align: center;
  }
  .image-box img {
    width: 20vw;
    height: auto;
    display: inline-block;
    border-radius: 5px;
    margin: 0 auto; /* Center the element */
  }
}
