img {
  border-radius: 150px;
  width: 300px;
  height: 300px;
  align-items: center;
  justify-content: center;
  display: block;
  margin: 0 auto;


}

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 {
  background: #03081a;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin-top: 20px;
  height: 100vh;
}

.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;

}

@media (max-width: 350px) {
  img {
    width: 200px;
    height: 200px;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 25px;
  }

  p {
    font-size: 20px;
  }

  .card {
    max-width: 320px;
    padding: 10px;
  }

  button {
    font-size: 18px;
    padding: 8px 16px;
  }
}

@media screen and (min-width:350px) and (max-width:500px) {
  img {
    width: 250px;
    height: 250px;
  }

  h1 {
    font-size: 35px;
    margin-top: 15px;
  }

  h2 {
    font-size: 30px;
  }

  p {
    font-size: 23px;
  }

  .card {
    max-width: 320px;
    padding: 13px;
  }

  button {
    font-size: 18px;
    padding: 10px 20px;
  }
}

@media screen and (min-height:1080px) {
  body {
    margin-top: 50px;
  }

  img {
    width: 350px;
    height: 350px;
  }

}

.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;
  }
}


.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;
  }
}