body {
  background-color:white;
  text-align:center;
  margin:auto;
  height: 100%; /* Occupy 100% of the viewport height */
  width: 100%;  /* Occupy 100% of the viewport width */
  margin: 0;   /* Remove default margins */
  padding: 0;  /* Remove default padding */
  /*overflow: hidden; /* Prevent scrollbars if content exceeds viewport */
}
p {
    font-size:100%;
}
html{
  height: 100%; /* Occupy 100% of the viewport height */
  width: 100%;  /* Occupy 100% of the viewport width */
  margin: 0;   /* Remove default margins */
  padding: 0;  /* Remove default padding */
  overflow: hidden; /* Prevent scrollbars if content exceeds viewport */
}
.fullscreen-text {
  font-size: 2vw; /* Adjust as needed, e.g., 5vw, 15vw */
  text-align: center; /* Center the text horizontally */
  display: flex; /* Use flexbox for vertical centering */
  justify-content: center; /* Center horizontally with flexbox */
  align-items: center; /* Center vertically with flexbox */
  width: 100%; /* Ensure the text container takes full width */
  /*height: 100%; /* Ensure the text container takes full height */
}

img {
    max-width:100%;
    max-height:250px;
}