@import url('root.css');

/* Body */

* {
    box-sizing: border-box;
}

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

/* Gold Rings */

#main {
    display: none;  
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

.main-container, .loader-container {
    width: 100%;
    height: 100vh;
}

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--casino-nights-black);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  
  opacity: 1;
  transition: opacity 0.5s ease;
}

.gold-ring {
  width: 20vh;
  height: 20vh;
  margin-left: 5vw;
  
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}