/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Arial', sans-serif;
  overflow: hidden;
}

/* Background */
.background-color {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgb(219, 216, 189);
  z-index: -2;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

/* Content layout */
.content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
  padding: 40px 20px;
}

.center h1 {
  font-size: 7rem;
  color: #00baf2;
  font-family: 'Georgia', serif;
}

.bottom p {
  font-size: 2rem;
  color: rgb(116, 26, 200);
}

.bottom a {
  color: rgb(116, 26, 200);
  text-decoration: none;
}

.bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .center h1 {
    font-size: 2.5rem;
  }
  
  .bottom p {
  font-size: 1rem;
  color: rgb(116, 26, 200);
  }
}
