body { 
  background: black; 
  background-image: url("/homepage/Fractal-BG.gif");
  /* background-repeat: no-repeat; */
  /* background-attachment: fixed; */
  background-repeat: repeat-x;
  background-size: 50% auto;

}
#title {
  font-size: 70px;
  color: white;
  display: grid;
  place-items: center;
  background-color: #bc2222;
}
#links{
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@font-face{
  font-family: "Halloween";
  src: url("/homepage/halloween.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
button {
  height: 50px;
  width: 400px;
  padding: 10px 20px;
  color: black;
  border: 5px solid #444444;
  transition: all 0.3s ease;
  font-size: 20px;
  /* font-family: "Halloween"; */
}
button:hover{
  transform: scale(1.2);
}
html, body {
  height: 100%;
  margin: 0;
}

.footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

.footer .icon-links {
  margin: 10px 0;
}

.footer .icon-links a {
  color: #fff;
  margin: 0 10px;
  font-size: 24px;
  transition: transform 0.3s, color 0.3s;
}

.footer .icon-links a:hover {
  color: #1da1f2;
  transform: scale(1.2);
}

.footer p {
  margin: 5px 0;
  font-size: 14px;
}

#online{
  color: white;
  position: fixed;
  bottom: 0;
  right: 0;
}