* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: rgb(61, 69, 93);
  font-family: Arial, sans-serif;
  color: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  width: 100%;
  max-width: 800px;
  padding: 20px;
}

.logo img {
  width: 250px;
  margin-bottom: 30px;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.marquee p {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 10s linear infinite;
  font-size: 18px;
  color: #fff;
  margin-top: 10px;
}

@keyframes marquee {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(-100%, 0); }
}

/* Efek mengambang */
.float-logo {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}




.menu {
  margin: 40px 0;
}

.button {
  display: block;
  background-color: rgb(178, 124, 86);
  color: white;
  text-decoration: none;
  padding: 15px;
  margin: 15px 0;
  border-radius: 8px;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: rgb(209, 211, 212);
}

.footer img {
  margin-top: 30px;
  width: 180px;
}
