@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

body {
  background-color: white;
  color: white;
  font-family: Plus Jakarta Sans;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.dropdown {
  position: absolute;
  top: 0;
  left: 0;
}

.dropButton {
  display: flex;
  position: absolute;
  background-color: white;
  color: #088cac;
  padding: 16px;
  font-size: 25px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.dropdownContent {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdownContent a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown:hover .dropdownContent {
  display: block;
}

.content-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.address {
  order: 1;
}

.email {
  order: 2;
}

.address-title,
.email-title {
  color: black;
  font-weight: bold;
  font-size: 28px;
  text-align: center;
  padding: 5px;
}

.address-content,
.email-content {
  color: black;
  font-size: 23px;
  text-align: center;
  padding-bottom: 20px;
}

@media(max-width: 768px) {
    body {
        flex-direction: column;
        height: auto; 
        padding: 10px; 
        overflow: auto; 
    }

    .dropButton {
        font-size: 18px; 
        padding: 10px; 
    }

    .content-container {
        height: auto; 
        padding: 10px; 
    }

    .address-title,
    .email-title {
        font-size: 18px; 
        padding: 3px; 
    }

    .address-content, 
    .email-content {
        font-size: 14px; 
        padding-bottom: 10px; 
    }
}