@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Thai:wght@100;200;300;400;500;600;700&display=swap");

body {
  font-family: "IBM Plex Sans Thai", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.container {
  padding: 120px;
}

html {
  scroll-behavior: smooth;
}

.messenger-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #1e88e5;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1000;
}

.messenger-icon img {
  width: 25px;
  height: 25px;
}

.slide-button,
.idea-slide-button,
.image-slide-button {
  margin-right: 10px;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.slide-button.active,
.idea-slide-button.active,
.image-slide-button.active {
  background-color: #e25f51;
  color: white;
  border: 0px;
}

#sidebar-active {
  display: none;
}
.open-sidebar-button,
.close-sidebar-button {
  display: none;
}
@media (max-width: 880px) {
  .links-container {
    flex-direction: column;
    align-items: flex-start;

    position: fixed;
    top: 0;
    right: -100%;
    z-index: 110;
    box-shadow: -5px 0 5px rgba(0, 0, 0, 0.25);
    transition: 0.75s ease-out;
  }
  .open-sidebar-button,
  .close-sidebar-button {
    padding: 10px;
    display: block;
  }
  #sidebar-active:checked ~ .links-container {
    right: 0;
  }
  #sidebar-active:checked ~ #overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
  }
}

#wrapper {
  height: 0;
  overflow: hidden;
  transition: height 200ms;
}

#floor-img {
  transition: 0.8s;
  /* transition-timing-function: linear; */
  animation: ease-out 15s;
}
