.backgroundaja {
  background-image: url('background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: -1;
  border: 0px;
  top: 0;
  left: 0;
}

.container {
  border-radius: 10px;
  max-width: 700px;
  width: 95%; 
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #ccc;
  background-color: white;
  box-sizing: border-box; 
}

header, nav, main, section, aside, footer, .header-banner {
  border: 1px solid #000;
  padding: 15px;
  margin-bottom: 10px;
  background-position: center;
  background-repeat: no-repeat;
  border: 0px;
  box-sizing: border-box;
}

header {
  background-color: #4caf50;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  height: 80px; 
  padding: 0 20px !important;
  box-sizing: border-box;
}

.logo {
  background-image: url('Logo.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  margin: 0;
}

.WELCOME {
  margin: 0 !important;
  display: flex;
  align-items: center;
}

.WELCOME h1 {
  margin: 0 !important;
  color: white;
  font-size: 24px; 
  font-weight: bolder;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-banner {
  background-image: url('Banner Dorry5.png');
  display: flex;
  background-size: cover;
  background-position: center;
  justify-content: space-between;
  height: 225px;
  width: 100%;
}

.button1 {
  text-decoration: none;
  background-color: #4caf50;
  border-radius: 10px;
  padding: 10px;
  color: white;
  border: 1px solid #4caf50;
  display: inline-block;
}

.button2 {
  text-decoration: none;
  background-color: #af4c4c;
  border-radius: 10px;
  padding: 10px 15px;
  color: white;
  border: 1px solid #af4c4c;
  /* Kunci sejajar: */
  display: inline-flex !important;
  align-items: center;
  gap: 10px; /* Jarak antara icon dan teks */
  margin-bottom: 5px;
}

.button3 {
  text-decoration: none;
  background-color: rgb(175, 76, 150);
  border-radius: 10px;
  padding: 10px 15px;
  color: white;
  border: 1px solid rgb(175, 76, 150);
  /* Kunci sejajar: */
  display: inline-flex !important;
  align-items: center;
  gap: 10px; /* Jarak antara icon dan teks */
}

/* Biar ada efek pas diklik */
.button2:active, .button3:active {
  transform: translateY(2px);
}

#sendit {
  text-decoration: none;
  background-color: blue;
  border-radius: 10px;
  padding: 10px;
  color: white;
  border: none;
  cursor: pointer;
}

.button1:hover {
  opacity: 0.9;
}

.content-area {
  display: flex;
  gap: 10px;
  border: 0px;
  color: #A0D683;
  flex-wrap: wrap; 
}

.main-content {
  width: 100%;
  height: 560px;
  background-size: 100%;
  display: flex;
  justify-content: center;
  background-repeat: no-repeat;
  border: 0px;

}
.main-content .placeholder {
  align-self: flex-end;
}

.previmg {
  margin: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 50vh;
  width: 100%; 
  border: 0px;
}

.white-space-description {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  color: #A0D683;
  min-width: 250px;
}

.body-and-footer-container {
  flex: 2;
  display: flex;
  flex-direction: column;
  min-width: 250px;
}

.body-area {
  flex-grow: 1;
  min-height: 250px;
}

.donate-area {
  display: flex;
  justify-content: flex-start;
  padding: 0;
  margin: 10px 0;
  border: none;
  flex-wrap: wrap;
  gap: 10px;
}

.donate-button {
  padding: 10px 20px;
  font-size: 1em;
  cursor: pointer;
  background-color: #4caf50;
  color: #d3ee98;
  border: none;
  text-decoration: none;
  display: inline-block;
  border-radius: 5px;
}

embed {
  height: 100%;
  width: 100%;
  min-height: 300px;


@media screen and (max-width: 768px) {
  
  .container {
    width: 100%;
    margin: 0;
    border-radius: 0;
    padding: 10px;
  }

  header {
    flex-direction: row;
  }

  .WELCOME {
    font-size: 1.2rem;
    margin-top: 0;
  }

  .header-banner {
    height: 150px;
    background-size: cover;
  }

  .content-area {
    flex-direction: column;
  }
  .body-and-footer-container, 
  .white-space-description {
    width: 100%;
    padding-left: 0;
    min-width: auto;
  }
  .previmg {
    height: 300px;
  }
    .donate-button {
    width: 100%;
    text-align: center;
  }
    .main-content {
    min-height: auto;
  }
}}