/* styles.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #000000;
}

#logo-container {
  position: relative;
  width: 100%;
  height: 100%;
}


/* Default logo size for desktop screens */
#logo {
  width: 250px; /* desktop */
  height: auto;
  will-change: transform;
}

/* For smaller screens, resize the logo */
@media (max-width: 768px) {
  #logo {
    width: 150px; /* tablets */
  }
}

@media (max-width: 480px) {
  #logo {
    width: 150px; /* mobile */
  }
}