@import url("https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap");

@font-face {
  font-family: 'MachineLearningFont';
  /* This is an arbitrary name -- whatever works for you */
  src: url('https://cdn.glitch.com/e7e6c59c-f2c2-4680-b1bb-b06b2f0b313a%2FMachineLearningFont-v2.otf?v=1608679905189');
  url('https://cdn.glitch.com/e7e6c59c-f2c2-4680-b1bb-b06b2f0b313a%2FMachineLearningFont-v2.otf?v=1608679905189') format('otf'),
}

#loading {
  display: flex;
  height: 99vh;
  width: 99vw;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: min(max(15px, 3vw), 20px);
  position: fixed;
  top: 0;
  z-index: 299;
  background: white;
  opacity: 1;
  transition: .5s
}

#container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  color: black;
}

#progressbar {
  width: min(50vw, 400px);
  height: 2px; //0.3vh;
  margin-left: 20px;
  margin-right: 20px;
  padding-bottom: 20px;
}

.side:nth-of-type(1) {
  width: min(3.5%, 35px);
  transform: scaleX(-1);
}

.side:nth-of-type(2) {
  width: 50px;
}

#to {
  font-family: 'MachineLearningFont', serif;
}

@media screen and (max-width: 1100px) {
  .side:nth-of-type(1) {
    width: min(5%, 35px);
  }
}