body {
  background-image: url("background-image.gif");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center 38%;
  font-family: 'Roboto', sans-serif;
  margin: 0;
}

.container {
  gap: 10px;
  margin-top: 20px;
  margin-right: 20px;
}

h1 {
  color: #ffffff;
  grid-column: 4 / 6;
  text-align: right;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.main-text {
  font-size: 24px;
  grid-column: 4 / 6;
  text-align: right;
  margin-top: 24px;
}


.logo {
  max-width: 250px;
  Margin-right: -3px;
}

p {
  color: #ffffff;
  grid-column: 4 / 6;
  text-align: right;
  margin: 0;
}

.footer {
  display: grid;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 20px;
  color: #ffffff;
  font-size: small;
}


.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* brings to front */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  Opacity: 0.8;
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0); /* Black w/ opacity */
}

.myBtn {
  background: none;
  border: none;
  color: inherit;
  position: absolute;
  right: 0;
  top: 92%;
  margin-right: 20px;
  padding-right: 0px;
  padding-bottom: 80px;
  transform: translateY(-50%);
}


.copyright p {
  font-size: x-small;
  position: absolute;
  text-align: right;
}

/* Modal Content/Box */
.modal-content {
  background-color: #000000;
  position: fixed;
  top: 67%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  width: 80%; 
  max-height: 45vh; 
  overflow-y: auto;
  border-radius: 10px;
}

/* Modal Body */
.modal-body {
  max-height: calc(45vh - 30px); /* Subtract the padding from the modal-content max-height */
  overflow-y: auto;
}

/* Customize the scrollbar styles */
.modal-body::-webkit-scrollbar {
  width: 2px;
  background-color: #f5f5f5;
  border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.modal-content p {
  text-align: left;
  font-size: x-small;
  Margin-right: 20px;
}

/* The Close Button */
.close {
  color: #aaa;
  font-size: 20px;
  font-weight: bold;
  position: fixed;
  top: 0.1px;
  right: 6px; 
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 800px) {
  .main-text {
    font-size: 16px;
  }

  .myBtn {
    font-size: small;
  }

  .copyright {
    font-size: small;
  }
}
