@font-face {
  font-family: "Trebuchet MS";
  src: url("./assets/trebuc.ttf");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Trebuchet MS", sans-serif;
}

.light-container {
  position: relative;
}

.hanging-light {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  object-fit: cover;
  animation: swing 5s infinite;
  transform-origin: top;
  pointer-events: none;
  height: 52.5%;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100svh;
  flex-direction: column;
  background-color: #120f0e;
  color: white;
}

.container h1 {
  font-size: 7rem;
}

.container p {
  font-size: 1.5rem;
}

.container a {
  text-decoration: none;
  color: white;
  padding: 10px 20px;
  border: 1px solid white;
  border-radius: 5px;
  margin-top: 20px;
  transition: 0.3s;
}

.container a:hover {
  background-color: white;
  color: #120f0e;
}
