html,
body {
  margin: 0;
  padding: 0;
}

body {
  background-color: #f8d30f;
}
#loader {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #a58c0b;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  z-index: 9999;
  
  
}

#container {
  width: 100vw;
  height: 100vh;
}
#loader img{
  position: fixed;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}