h1 {
  font-size: 45px;
  background: linear-gradient(
    to right,
    blue 10%,
    red 25%,
    yellow 70%,
    green 90%
  );
  background-position: fixed;
  -webkit-background-clip: text;
  color: transparent;
  text-align: center;
  font-family: "system-ui", sans-serif;
  font-weight: bold;
  text-shadow: 1 1px 1px rgba(0, 0, 0, 0.3);

  margin-top: 20px;
}

div {
  background-color: #f0f0f0;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  width: 400px;
  height: auto;
  margin: 0 auto;
}

h2 {
  font-size: 37px;
  color: #e76f51;
  font-family: "Winky Sans", sans-serif;
  font-style: normal;
  outline: 5px color-black;
  text-shadow: (0, 1, 1) px rgba(0, 0, 0, 0.5);
}

p {
  font-size: 26px;
  color: #ffffff;

  font-family: "Winky Sans", sans-serif;
  outline: 5px color-black;
  text-shadow: (0, 1, 1) px rgba(0, 0, 0, 0.5);
}

body {
  margin-top: 20px;
  height: 100%;
  scroll-behavior: smooth;
  background: #0b051f;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

html {
  scroll-behavior: smooth;
}

img {
  border-radius: 150px;
  width: 300px;
  height: 300px;
  align-items: center;
  justify-content: center;
  display: block;
  margin: 0 auto;
}

.download {
  text-align: center;
  margin-top: 20px;
  color: #eccc68;
  text-shadow: black 2px 2px 10px;
  padding: 10px 20px;
  font-size: 29px;
  text-align: center;
}

button {
  background-color: #2a9d8f;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 5px;
  text-align: center;
  margin: 0 auto;
  display: block;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: "Winky Sans", sans-serif;
}

.loader-parent {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  flex-direction: column;
  background-color: #03081a;
}

.loader-parent h3 {
  color: #eccc68;
  text-shadow: black 2px 2px px;
  font-size: 30px;
  font-family: monospace;
  text-align: center;
  margin-top: 20px;
  letter-spacing: 2px;
}

#loader {
  width: 100px;
  height: 100px;
  border: 10px solid #fcf9f9;
  border-radius: 50%;
  border-top-color: #223977;
  animation: rotate 1s infinite;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  background-color: transparent;
}

@keyframes rotate {
  100% {
    rotate: 360deg;
  }
}

/*Mobile*/
@media screen and (min-width: 320px) and (max-width: 600px) {
  img {
    width: 70vw;
    max-width: 300px;
    height: auto;
  }

  h1 {
    font-size: vw(8);
    margin-top: 15px;
  }

  h2 {
    font-size: vw(6);
  }

  p {
    font-size: vw(5);
  }

  .card {
    width: 90vw;
    height: auto;
    max-width: 320px;
    padding: 13px;
  }

  button {
    font-size: 18px;
    padding: 10px 20px;
  }
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
  img {
    width: 80vw;
    max-width: 300px;
    height: auto;
  }

  h1 {
    font-size: vw(9);
    margin-top: 16px;
  }

  h2 {
    font-size: vw(7);
  }

  p {
    font-size: vw(5.5);
  }

  .card {
    width: 90vw;
    height: auto;
    max-width: 400px;
    padding: 15px;
  }

  button {
    font-size: 20px;
    padding: 12px 24px;
  }
}

@media screen and (min-height: 1024px) {
  body {
    margin-top: 70px;
  }

  img {
    width: 350px;
    height: 350px;
  }
}

.main-image {
  width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  transition: transform 0.5s ease-in-out;
}
.main-image:hover {
  transform: scale(1.05);
}
.main-image:active {
  transform: scale(0.95);
}

.info {
  font-size: 20px;
  color: #2eb5eb;
  font-family: "Winky Sans", sans-serif;
  text-align: center;
  margin-top: 20px;
  text-shadow: 0 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.info a {
  color: #e76f51;
  text-decoration: none;
  font-weight: bold;
}

a {
  text-decoration: none;
  font-weight: bold;
}

.info a:hover {
  color: #56cfc1;
  text-decoration: underline;
}

.info a:visited {
  color: #e76f51;
}

.card {
  width: 400px;
  height: auto;
  margin: 0 auto;
  line-height: 1.6;
  background-color: #1c1f2b;
  border-radius: 10px;
  padding: 20px;
  color: #ffffff;
  position: relative;
}

@property --angle {
  initial-value: 0deg;
  syntax: "<angle>";
  inherits: false;
}

.card::after,
.card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: conic-gradient(
    from var(--angle),
    blue,
    red,
    yellow,
    green,
    blue
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  z-index: -1;
  padding: 3px;
  animation: 3s linear infinite spin;
}

.card::before {
  filter: blur(2rem);
}

.circle {
  width: 300px;
  border-radius: 50%;
  position: relative;
  padding: 0px;
}

.circle img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
}

.circle::before,
.circle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: conic-gradient(
    from var(--angle),
    blue,
    red,
    yellow,
    green,
    blue
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  padding: 10px;
  animation: 3s linear infinite spin;
}

.circle::before {
  filter: blur(1.5rem);
}

.circle::before {
  filter: blur(2rem);
}

@keyframes spin {
  from {
    --angle: 0deg;
  }

  to {
    --angle: 360deg;
  }
}
