body {
  font-family: Arial, sans-serif;
  background-color: #2c2c2c;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

#autoplayPopup {
  position: fixed;
  text-align: center;
  left: 50vw;
  transform: translate(-50%, 0);
  padding-left: 0.5vw;
  padding-right: 0.5vw;
  padding-top: 0.25vw;
  padding-bottom: 0.25vw;
  border-radius: 0.25vw;
  background-color: #302727b0;
  top: 2vh;
  font-size: 2vmin;
  color: rgb(247, 66, 66);
}
#autoplayPopup a {
  text-decoration: underline;
  color: rgb(172, 42, 42);
  cursor: pointer;
}

.autoplayPopupLeave {
  top: 0 !important;
  transform: translate(-50%, -100%) !important;
  transition: all 0.25s ease-in-out;
}

#container {
  text-align: center;
  color: #fff;

  transition: transform 1s ease-in-out;

  background-color: #333333ad;
  border: #242424 5px solid;
  border-radius: 2px;
  padding: 20px;
}

#crapOfTheDay {
  position: fixed;
  text-align: center;
  color: #fff;

  transition: transform 1s ease-in-out;

  background-color: #333333ad;
  border-top: #242424 5px solid;
  padding: 20px;
  left: 0;
  bottom: 0;
  right: 0;
}

h1 {
  font-size: 8vmin;
  margin-bottom: 20px;
}
p {
  font-size: 3vmin;
  margin-bottom: 30px;
}

.icon {
  font-size: 2.5vmin;
  margin-right: 10px;
}
button {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-align: center;
  line-height: 100%;
  display: inline-block;
  justify-content: center;
  align-items: center;
}

button:hover {
  background-color: #004793d2;
}

.buttonText {
  margin-left: 10px;

  font-family: Arial, sans-serif;
  line-height: 100%;
  font-size: 2.5vmin;
  /*font-weight: normal;*/
}

html,
body {
  height: 100%;
}

#bgscroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: -1;
  background: url("./src/images/warehouse-panorama.jpg");
  background-size: cover;
  background-position-y: center;
  background-position-x: 0px;
  animation: bgscroll 25s linear infinite;
}

@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes bgscroll {
  from {
    background-position-x: 0px;
  }
  to {
    background-position-x: -2000px;
  }
}
