@import url("https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,200..900;1,200..900&display=swap");

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

html,
body {
  height: 100%;
  width: 100%;
}

body {
  font-family: "Crimson Pro", Wukong, Arial, Helvetica, sans-serif;
  overflow: hidden;
  user-select: none;
}

main {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
}

main video {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -1;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

button {
  position: absolute;
  font-size: 36px;
  padding: 0.5rem 4rem;
  font-weight: 400;
  font-family: "Crimson Pro", Arial, Helvetica, sans-serif;
  background: linear-gradient(to bottom, #fae782, #b08552);
  color: black;
  border-radius: 0.375rem;
  border: none;
  bottom: 20px;
}

button:hover {
  cursor: pointer;
  background: linear-gradient(to bottom, #f5e174, #b18249);
}

@media screen and (max-width: 768px) {
  main {
    align-items: center;
    justify-content: center;
  }
}
