body {
  background-image:url(/images/yellow_texture.jpg);
  background-size: cover; 
  display: grid;
  place-items: center; /* Centers everything horizontally and vertically */
  align-content: center; /* Ensures content groups don't break during resize */
}

#hallimg1 {
  margin-top: 100px; 
}

#halltext {
  position:relative;
  text-align: center;
  display: grid;
  font-size: clamp(1.5rem, 1.5vh - 2rem, 3rem);
  place-items: center;
  align-content: center;
  margin-top: 100px;
  margin-left: 20%;
  margin-right: 20%;
  width: auto;
}

a {
    color: red;
    text-decoration: none;
}

a:hover {
    color: grey;
}