
body {
    font-family: League spartan;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    background-color: #FFF9E4;
}

header {
    box-sizing: border-box;
    background-color: #FFA8B5;
    color: #ffde59;
    text-shadow: 0 8px 14px rgba(0, 0, 0, 0.1);
    padding: 1px;
    align-items: center;
    height: 260px;
}
img{
  display: block;
  margin: auto;
}
.section-atas{
    text-align: left;
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
    border: 2px solid #aaa;
    border-radius: 15px;
    margin: 10px;
    background-color: #FFCC53;
}

.sections-container {
    display: flex;
    height: 260px; /* header + navbar + footer height adjustment */
  }

  .section {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
    border: 2px solid #aaa;
    border-radius: 15px;
    margin: 10px;
  }

  .section:nth-child(1) {
    background-color: #FFCC53;
  }

  .section:nth-child(2) {
    background-color: #FFCC53;
  }


h1{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 1px;
}

nav ul li {
    display: inline-flex;
    margin: 0 10px;
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-family: League spartan;
    font-size: large;
    font-weight: 600;
    transition: all;
    transition-duration: 300ms;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
}
nav ul li a:hover{
    color: #ffde59;
    border-bottom: 1px solid #ffde59;
}
.dropdown {
    display: none; 
    position: absolute; 
    background-color: #fea8b5; 
    min-width: 160px; 
    z-index: 1; 
}

.dropdown li {
    display: block; 
}

nav ul li:hover .dropdown {
    display: none; 
}

.dropdown li a {
    padding: 0 16px; 
    color: black; 
    text-decoration: none; 
}

.dropdown li a:hover {
    background-color: #e182fe; 
}

.hello {
    width: 45%;
    padding: 20px;
    margin: 10px;
}

h2 {
    text-align: center;

}

section2 {
    padding: 20px;
    margin: 10px;
    text-align: center;
}
button {
     padding: 20px 120px;      /* Lebih besar ukuran dalam tombol */
    font-size: 20px;         /* Memperbesar teks */
    background-color: #fea8b5;
    color: black;
    border: none;
    border-radius: 8px;      /* Membuat tombol terlihat lebih modern */
    cursor: pointer;
    font-family: League spartan;
}

button:hover {
    background-color: #FFCC53;
}
.button-disp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}


footer {
    background-color: #fea8b5;
    color: white;
    text-align: center;
    padding: 15px;
    position: relative;
    bottom: 0;
    width: 100%;
  }