* {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  color: beige;
}

body,
html {
  height: 100%;
}

.text-animation {
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

.text-animation:hover {
  transform: scale(1.05);
}

.project-link {
  color: aqua;
  text-decoration: none;
}

.project-link:hover {
  color: red;
}

footer {
  bottom: 0;
  width: 100%;
}

.bahasa-icon {
  position: relative;
}

.bahasa-icon .description {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tabs-container {
  max-width: 1000px;
  margin: 40px auto;
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  list-style: none;
  padding: 0;
}

.tabs li:not(:last-child) {
  margin-right: 7px;
}

.tabs li a {
  font-weight: bolder;
  display: block;
  padding: 10px 20px;
  border-radius: 20px;
  background: beige;
  position: relative;
  z-index: 2;
  transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out;
  opacity: 0.5;
  top: 5px;
}

.tabs li.active a,

.tabs li a:hover {
  opacity: 1;
  top: 0;
}

.tabs-content {
  position: relative;
  z-index: 2;
  padding: 25px;
  border-radius: 20px;
  background: beige;
}

.tabs-panel {
  display: none;
}

.tabs-panel.active {
  display: block;
}

#card {
background-color: #007267;
}
