@import url("https://fonts.googleapis.com/css2?family=Stack+Sans+Text:wght@200..700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Stack Sans Text", sans-serif;
}

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

main {
  background: #111;
}

#overlay {
  height: 100vh;
  width: 100%;
  background-color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: -1;
}
#overlay .img {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 5%;
}

.card-con {
  background: none;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.card-con button {
  padding: 1rem 1.5rem;
  border: 0;
  background-color: transparent;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.18s cubic-bezier(0.2, 0.9, 0.3, 1), box-shadow 0.18s;
  align-self: center;
  justify-self: end;
  border: 1px solid rgba(30, 144, 255, 0.1803921569);
  position: relative;
  z-index: 99;
  transform: scale(2);
}
.card-con button:hover {
  transform: translateY(-2px) scale(1.95);
  box-shadow: 0 10px 30px rgba(30, 144, 255, 0.1803921569);
}
.card-con button:active {
  transform: translateY(1px) scale(2.15);
}

.card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.card h1 {
  color: white;
  background: url("https://media.gettyimages.com/id/1258275154/photo/final-chennai-super-kings-v-gujarat-titans.jpg?s=1024x1024&w=gi&k=20&c=mgLG-VYiz7njUKqT8BMaQcD7XRG2k7xrIRmh03-G7Rs=") no-repeat;
  background-position: top center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: cover;
  font-size: 18vw;
  font-weight: 800;
  position: relative;
  z-index: 1;
  text-shadow: 2px 10px 1px rgba(0, 0, 0, 0.7058823529);
}

.teamColor {
  height: 20%;
  width: 100%;
  position: absolute;
  bottom: 30%;
  filter: blur(80px);
  transform: rotate(-45deg);
}/*# sourceMappingURL=style.css.map */