body {
    font-size: 12px;
    font-family: sans-serif;
    margin: 0;
    height: 100vh; /* Full viewport height */
    width: 100vw; /* Full viewport width */
    color: rgb(255, 255, 255);
    background-image: url('images/index.jpg');
    background-size: cover; /* Scale the image to cover the container */
    background-position: center bottom; /* Center horizontally and position the image to cut off the top */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    overflow-x: hidden;
  }
  

p {
  font-size: 4vw;
  text-align: center;
  color: white;
  letter-spacing: 5px;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  padding-left: 4vw;
}


.content {
  position: absolute;
  width: 99%;
  height: 100%;
  margin: 0 auto;
}

h1 {
    font-size: 50px;
    margin: 0px;
}
h2 {
    font-size: 20px;
    margin: 0px;
}

#text-content {
    
    display: flex;
    flex-direction: column; 
    text-align: center;
    justify-content: center;
    width: 70%;
    margin: auto;
    height: fit-content;
    background-color: rgba(15,37,84, 0.9);
    border-radius: 20px;
    padding: 20px;
    margin-top: 10px;
}
