@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

html, body { 
  margin: 0;
  height: 100%;
  font-family: 'Roboto' !important; 
  color: white;
  font-size: 9px;
  overscroll-behavior: none;
  touch-action: none;
    -webkit-overflow-scrolling: none;
    overflow: hidden;
    position: fixed;
    width: 100%;
}

#magic {
  position: fixed;
  width: 100%;
  height: 100vh;
  display: block;
  top: 0;
  left: 0;
  z-index: -9999;
    touch-action: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.playground {
  position: fixed;
  width: 100%;
  height: 100vh;
  display: block;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.bottomPosition {
  text-align: center;
  margin-bottom: 50px;
}

.minText {
  font-size: 14px;
}

a {
  color: white;
  font-size: 12px;
  text-decoration: none;
}

.logo {
  width: 50px;
  height: 50px;
}

@media (max-width: 768px) {
  .logo {
    width: 40px;
    height: 40px;
  }
  
  .minText {
    font-size: 12px;
  }
  
}
.logo {
    width: 150px; /* Increased from 50px */
    height: 150px; /* Increased from 50px */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

@media (max-width: 768px) {
    .logo {
        width: 120px; /* Increased from 40px */
        height: 120px; /* Increased from 40px */
    }
}
.email-link {
    color: inherit;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.email-link:hover {
    opacity: 0.8;
}