#LucidTerror {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}



#LucidTerror .video-link {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  padding: 0.75rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-weight: bold;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

#LucidTerror .video-link:hover {
  transform: scale(1.1);
  background-color: rgba(255, 255, 255, 0.25);
}





.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}

.about-image img {
  width: 100%;
  max-width: 25rem; 
  height: auto;
  border-radius: 0.5rem;
  object-fit: cover;
}

.sensor-image img {
  width: 100%;
  max-width: 25rem;
  height: auto;
}

.about-text-overview {
  max-width: 50rem;
  padding: 0 1rem;
  
}

.about-text {
  max-width: 50rem;
  padding: 0 1rem;
  margin-bottom: 3rem;
}

