@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  height: 100vh;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  perspective: 800px;
}

header {
  display: flex;
  align-items: center;
  background-image: linear-gradient(
    90deg,
    #532e2b,
    30%,
    #ab5e58,
    70%,
    #532e2b 90%
  );
  box-shadow: 0px 0px 20px 2px #000;
  padding: 20px 30px;
  gap: 20px;
}

header .logo img {
  width: 100px;
  filter: drop-shadow(0px 0px 15px rgb(14, 13, 13));
  transition: 0.3s ease-in-out;
}

.logo img:hover {
  filter: drop-shadow(0px 0px 15px rgb(58, 179, 179));
}

header h1 {
  font-size: 20px;
  color: white;
  margin: 0px auto;
  text-shadow: 1px 1px #000;
  text-align: center;
}

header span {
  color: #a0152c;
}

main {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 90px 50px;
}

main img {
  margin-top: auto;
  width: 250px;
  opacity: 0.7;
}

.textContainer {
  max-width: 500px;
}

.textContainer h2 {
  margin-bottom: 10px;
}

main span {
  color: #a0152c;
}

.return-btn {
  position: absolute;
  top: 10px;
  left: 15px;
  width: 60px;
  height: 50px;
  background-color: aqua;
  filter: opacity(0.8);
  background: url("../images/return-btn.png") no-repeat center;
  background-size: 100%;
}

footer {
  text-align: center;
  margin-top: auto;
  box-shadow: 0px -2px 20px 2px #000;
  background-image: linear-gradient(
    90deg,
    #532e2b,
    30%,
    #ab5e58,
    70%,
    #532e2b 90%
  );
}

footer h2 {
  padding: 20px 0px;
  font-size: 15px;
  font-weight: 500;
  color: white;
  text-shadow: 2px 2px 15px black;
}
