@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;
}

.contentContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.missionStatement {
  order: 1;
}

.brief {
  order: 2;
}

.missionStatementTitle,
.briefTitle {
  color: black;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  padding: 5px;
}

.missionStatementText,
.briefText {
  color: black;
  font-size: clamp(1rem, 2vw, 1.2rem);
  text-align: center;
  padding-bottom: 20px;
  word-break: break-word;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  body {
    flex-direction: column;
    height: auto;
    padding: 10px;
    overflow: auto;
  }

  .dropButton {
    font-size: 18px;
    padding: 10px;
  }

  .contentContainer {
    height: auto;
    padding: 10px;
  }

  .missionStatementTitle,
  .briefTitle {
    font-size: 18px;
    padding: 3px;
  }

  .missionStatementText,
  .briefText {
    font-size: clamp(0.9rem, 4vw, 1rem);
    padding-bottom: 10px;
    max-width: 95vw;
  }
}
