@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;
}

.logoContainer {
  text-align: center;
}

.logoContainer img {
  width: 900px;
  height: auto;
}

.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;
}

.charityNumber {
  color: #088cac;
  font-weight: bold;
  position: fixed;
  bottom: 0;
  right: 0;
}

@media(max-width: 800px) {
    body {
        flex-direction: column;
        height: auto; 
        padding: 10px; 
        overflow: auto; 
    }

    .dropButton {
        font-size: 17px; 
        padding: 10px;  
    }

    .logoContainer {
        text-align: center;
    }

    .logoContainer img {
        width: 100%; 
        max-width: 300px; 
        height: auto; 
    }
}