body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(0, 0, 0);
}

#ruffle-style {
    width: 700px;
    height: 400px;
  display: block;

}

#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

#splash-logo {
  width: 260px;
  height: auto;
  margin-bottom: 20px;
}

#loading-text {
  font-size: 1.2rem;
  color: #7775e2;
  font-family: monospace;
  margin-top: 10px;
}

.spinner-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #090080, #3e33d6);
  animation: spin 1s linear infinite;
  mask: radial-gradient(farthest-side, transparent calc(100% - 12px), black calc(100% - 12px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 12px), black calc(100% - 12px));
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
