:root {
  --primary: #FFCE00;
  --secondary: #FE4880;
  --dark: #212121;
  --light: #F3F3F3;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: montserrat, sans-serif;
  width: 100%;
  min-height: 100vh;
  background-image: url("./img/bg.png");
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.card {
  margin: 100px auto 0;
  width: 400px;
  height: 600px;
  perspective: 1000px;
}

.card__inner {
  width: 100%;
  height: 100%;
  transition: transform 1.2s ease-in-out;
  transform-style: preserve-3d;
  cursor: pointer;
  position: relative;
}

.card__inner.is-flipped {
  transform: rotateY(180deg);
}


.card__face {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.card__face--front {
  display: flex;
  padding: 10px;
  align-items: center;
  justify-content: center;
}

.card__face--front h2 {
  color: #FFF;
  font-size: 32px;
}

.card__face--back {
  display: flex;
  padding: 10px;
  align-items: center;
  justify-content: center;
  transform: rotateY(180deg);
}

.card__body {
  padding: 30px;
}

.img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 16px;
}

.final-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.domain-image {
  max-width: 80%;
  margin-bottom: 20px;
}

.see-more-btn {
  padding: 10px 20px;
  font-size: 18px;
  color: white;
  background-image: linear-gradient(to bottom, #d3d3d3, #a9a9a9);
  border: 1px solid #808080;
  border-radius: 5px;
  cursor: pointer;
  text-shadow: 1px 1px 1px #000;
  text-decoration: none;
}

.intro-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.intro-image {
  animation: fade 3s forwards;
  max-width: 80%;
  max-height: 80%;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
