html,
body {
  background-color: #133b27;
}

.header {
  text-align: center;
  padding-top: 50px;
}

.logo {
  width: 300px;
  height: auto;
}

.modal-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.modal {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.image {
  width: 300px;
  height: 150px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.customer-support {
  font-size: 18px;
  color: #E8B43E;
  text-align: center;
  font-family: "Helvetica";
}

.customer-support a {
  color: #E8B43E;
}

.modal-text {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #E6B23E;
  padding: 10px;
  border: 1px solid #003e2c;
  width: 300px;
  height: 150px;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 2;
  text-align: centre;
  font-size: 40px;
  color:#003e2c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-family: "Helvetica";
  font-weight: 600;
}

.modal:hover .modal-text {
  visibility: visible;
  opacity: .75;
}




