@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@600&display=swap");

body {
  margin: 0;
  padding: 0;
  font-family: "Big Shoulders Display", cursive;
  height: 100px;
}

.banner {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner video {
  position: fixed;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height:100%;
}

.banner .content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.banner .content h1 {
  margin: 0;
  padding: 0;
  font-size: 4.5em;
  text-transform: uppercase;
  color: #ffff;
  text-shadow: 0px 0px 10px rgba(0,0,0,0.4), 0px 0px 13px rgba(0,0,0,0.1), 0px 0px 23px rgba(0,0,0,2);
}

.banner .content h2 {
  margin: 0;
  padding: 0;
  font-size: 2.5em;
  text-transform: uppercase;
  color: #ffff;
  text-shadow: 0px 0px 10px rgba(0,0,0,0.4), 0px 0px 13px rgba(0,0,0,0.1), 0px 0px 23px rgba(0,0,0,2);
}

.banner .content p {
  font-size: 1.5em;
  color: #ffff;
  text-shadow: 0px 0px 10px rgba(0,0,0,0.4), 0px 0px 13px rgba(0,0,0,0.1), 0px 0px 23px rgba(0,0,0,2);
}

.banner .content img {
  width: 40px;
  height: 40px;
  text-shadow: 0px 0px 10px rgba(0,0,0,0.4), 0px 0px 13px rgba(0,0,0,0.1), 0px 0px 23px rgba(0,0,0,2);
}

.card {
			margin-right: auto;
    margin-left: auto;
    box-shadow: 0 15px 25px rgba(129, 124, 124, 0.2);
    border-radius: 5px;
    backdrop-filter: blur(4px);
    background-color: rgba(255, 255, 255, 0.2);
    padding: 30px;
    text-align: center;
		}