:root {
  --bg: #f5e4cf;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

html {
  font-size: 16px;
}

body {
  overflow: hidden;
  background-color: #938fb8;
  background-color: var(--bg);
  cursor: grab;
}

.webgl,
#loader {
  position: fixed;
  top: 0;
  left: 0;
}

#loader {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  background-color: var(--bg);
  z-index: 10;
  background-image: url("./assets/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.message {
  display: none;
  position: fixed;
  width: 100%;
  max-width: 500px;
  left: -100%;
  bottom: 50px;
  gap: 0.85rem;
  z-index: 2;
  padding: 1.125rem 1.45rem;
  border-radius: 0.5rem;
  backdrop-filter: blur(5px);
  transition: left 500ms;
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: -3px 0px 5px rgba(0, 0, 0, 0.05);
}

.messageTitle {
  font-size: 1.7rem;
  letter-spacing: -0.025rem;
  color: #222222;
}

.messageDescription {
  font-size: 1.15rem;
  line-height: 1.5;
  color: #666666;
}

.is-visible {
  left: 50px;
}

@media screen and (max-width: 600px) {
  .message {
    max-width: 100%;
    bottom: 0px;
  }

  .is-visible {
    left: 0px;
  }
}