html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
    touch-action: none;
    user-select: none;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('./bg/bg_1.webp') no-repeat;
    background-size: cover;
    background-position: top;
    will-change: background-position;
}

.logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    padding: 30px 50px;
    border-radius: 5px;
    background-color: #fff;
    opacity: 0.9;
    text-align: center;
}

.logo img {
    width: 50vw;
    max-width: 600px;
    height: auto;
}
.logo .text {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 25px;
    margin-top: 10px;
}

@media (max-width: 991px) {
  .logo {
      padding: 20px 30px;
  }
  .logo .text {
    font-size: 20px;
  }

}
@media (max-width: 575px) {
  .logo {
      padding: 10px 15px 6px;
  }
  .logo .text {
    font-size: 15px;
    margin-top: 0px;
    white-space: nowrap;
  }
}