body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #1a1a1a;
    font-family: Arial, sans-serif;
    position: relative;
    overflow: hidden;
}
#background-canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.container {
    text-align: center;
    position: relative;
    z-index: 2;
}
.logo {
    max-width: 550px;
    height: auto;
}
.coming-soon {
    color: #ffffff;
    font-size: 24px;
    margin-top: 20px;
}
/* logo pop out */
.logo-container {
  position: relative;
  display: inline-block;
}

.indicator {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo-container:hover .indicator {
  opacity: 1;
}

.logo {
  position: relative;
  height: auto; /* Maintain aspect ratio */
  transition: transform 1s ease-in-out, left 1s ease-in-out, bottom 1s ease-in-out;
}

.logo:hover, .circle:hover {
    cursor: pointer;
}

.logo-animation {
    width: 550px;
    height: auto;
    transition: transform 1s ease-in-out;
    transform-origin: bottom right;
}

.logo-shrink.logo-move {
    animation: logo-shrink-and-move 1s ease-in-out forwards;
}

@keyframes logo-shrink-and-move {
    0% {
transform: scale(1) translate(0, 0);
    }
    100% {
transform: scale(0.5) translateX(calc(100vw - 275px - 50%)) translateY(calc(100vh - 50px - 50%));
    }
}
/* end logo pop out */

/* reset dialong box */
#reset-dialog {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

#reset-dialog-content {
    background-color: rgba(100,100,100,0.5);
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    color: #fff;
    width: 210px;
    text-align: center;
    border-radius: 20px;
}

.button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.button-grey {
    /* background-color: #808080; */
    background: transparent;
    color: white;
    padding-left: 0px;
    padding-right: 10px;
    margin-right: 12px;
}

.button-no {
    background-color: #af4c5f;
    color: white;
    padding: 10px 70px;
}
.button-close {
    background-color: transparent;
    color: white;
    position: relative;
    float: right;
    margin-top: -177px;
    margin-right: -21px;
    border-top-right-radius: 20px;
    padding-top: 14px;
    padding-right: 12px;
    padding-left: 12px;
    font-weight: bolder;
    font-size: 20px;
}
/* end reset dialog */

/* background logo 
.container {
  position: relative;
  height: 50vh;
}

.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("logo.png"); 
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: -1; 
}

.container > * {
  position: relative;
  z-index: 1; 
}*/

.menu-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1;
}

.menu-btn__burger {
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(255, 101, 47, 0.2);
  transition: all 0.5s ease-in-out;
}

.menu-btn__burger::before,
.menu-btn__burger::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(255, 101, 47, 0.2);
  transition: all 0.5s ease-in-out;
}

.menu-btn__burger::before {
  transform: translateY(-8px);
}

.menu-btn__burger::after {
  transform: translateY(8px);
}
