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

body {
  /* background-color: #EF9C66; */
  /* background: linear-gradient(to right, #EF9C66, #ef9c6694), url(https://grainy-gradients.vercel.app/noise.svg); */
  transition: background-color 3s ease-in-out;
}

.container { 
  display: flex;
  flex-direction: column;
  height: 97vh;
}

.blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 85vh;
  gap: 5px;
}

.blocks div {
  display: inline-block;
  width: calc((100% / var(--columns)) - 20px);
  height: 30px;
  border-radius: 0.3rem;
  box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.1);
  margin: 5px;
}

.bottom {
  display: flex;
  align-items: center;
  margin: 0px 15px 0px 15px;
  background-color: #1a213047;
  padding: 10px;
  border-radius: 0.8rem;
  margin-top: auto;
}

#actual-btn { 
  display: none;
}

label { 
  background-color: #F3F7EC;
  color: grey;
  padding: 7px 15px 8px 15px;
  font-size: 20px;
  font-family: Arial, Helvetica, sans-serif;
  border-radius: 0.3rem;
  cursor: pointer;
  margin-left: 10px;
}

#scrubber-container { 
  width: 100%;
  height: 40px;
  background-color: #F3F7EC;
  border-radius: 0.3rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}

#scrubber { 
  width: 2px;
  height: 100%;
  opacity: 0.9;
  background-color: red;
  position: absolute;
  left: 0;
  cursor: pointer;
}

#scrubber-draggable {
  width: 30px; 
  height: 100%;
  background-color: transparent;
  position: absolute;
  left: -9px; 
  cursor: pointer;
}

#line { 
  width: 100%;
  opacity: 0.4;
  height: 0.5px;
  background-color: black;
  position: relative;
  transform: rotate(180deg);
  margin-left: -2px;
}