@import url("https://fonts.googleapis.com/css2?family=Silkscreen&display=swap");

:root {
  --size-default: 22px;
  --size-sm: 16px;
  --color-blue: #6495ED;
  --color-black: #000;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@property --glowColor {
  syntax: "<color>";
  initial-value: #6495ED;
}
@keyframes rotate {
  0% {
    --angle: 0deg;
    --glowColor: var(--color-blue);
  }
  100% {
    --angle: 360deg;
    --glowColor: var(--color-blue);
  }
}

html,
body {
  color: #fff;
  width: 100%;
  height: 100%;
  font-family: "Silkscreen", sans-serif;
  font-size: 20px;
  background-color: black;
  transition: background-color 1s ease;
}

.panel {
  min-height: 100vh;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-family: "Silkscreen", sans-serif;
}

.color-black {
  background-color: #000;
}
.color-violet {
  background-color: #7a4eab;
}
.color-indigo {
  background-color: #4332cf;
}
.color-blue {
  background-color: #2f8fed;
}
.color-green {
  background-color: #4dcf42;
}
.color-yellow {
  background-color: #faeb33;
}
.color-orange {
  background-color: #f19031;
}
.color-red {
  background-color: #f2293a;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  font-family: "Silkscreen", sans-serif;
  font-size: 80px;
  margin-top: 0;
  text-shadow: 0 0 5px #ff00ea, 0 0 15px #ff00f2, 0 0 20px #f700ff,
    0 0 40px #f700ff, 0 0 60px #ff0000, 0 0 10px #ff00d4, 0 0 98px #ff0000;
  color: #ffffff;
  text-align: center;
}

.buttonc {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: none;
  background: none;
  position: relative;
  padding: 1px;
  text-decoration: none;
  transition: all 0.18s ease-in-out;
  transform: translate3d(0, 0, 0);
}
.btn:after,
.btn:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: calc(100px + 1.5px);
  background-size: 100% 100%;
  background-position: 0px 0px;
  background-image: conic-gradient(
    from var(--angle) at 50% 50%,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 33%,
    var(--glowColor) 50%,
    rgba(0, 0, 0, 0) 66%,
    rgba(0, 0, 0, 0) 100%
  );
  animation: rotate 2s infinite linear;
}
.btn:before {
  animation: rotate 2s infinite linear;
  filter: blur(20px);
}
.btn .btnInner {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: var(--size-sm) var(--size-default);
  border-radius: 100px;
  color: var(--color-blue);
  font-weight: 500;
  font-size: 22px;
  z-index: 1;
  transition: all 0.18s ease;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(40px);
  backface-visibility: hidden;
}
.btn:hover .btnInner {
  background: rgba(88, 221, 147, 0.1);
  color: #dd58d6;
}
.btn:active {
  transform: scale(0.95);
}

* {
  transition: all 0.3s ease-in-out;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

nav ul li {
  padding: 10px;
  font-size: 20px;
  font-family: "Silkscreen", sans-serif;
}

a {
  color: rgb(255, 128, 236);
  text-decoration: none;
}
a:hover {
  color: rgb(0, 234, 255);
}
h2 {
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 5%;
  text-align: center;
}

h3 {
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 5%;
  text-align: center;
}

p {
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 5%;
  text-align: center;
}

.testimonials {
  background-color: #000;
  padding: 20px;
  margin: 20px 0;
}

.testimonials h2 {
  color: #dd58d6;
}

.panimg {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.panimg img {
  width: calc(33.333% - 20px);
  height: auto;
}

blockquote {
  font-style: italic;
  color: #fff;
  margin: 10px 0;
  padding-left: 20px;
  border-left: 3px solid #dd58d6;
}

blockquote strong {
  font-style: normal;
  font-weight: bold;
}

.nav2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

ol li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-size: 20px;
  font-family: "Silkscreen", sans-serif;
}

@media (min-width: 576px) {
  nav ul {
    flex-direction: row;
  }
h1{font-size: 60px;}
  .btn {
    padding: 8px 15px;
    font-size: 14px;
  }

  .panimg img {
    width: calc(33.333% - 20px); 
    height: auto;
  }
}


@media (max-width: 575.98px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }
h1{font-size: 30px}
  .panimg {
    flex-direction: column;
  }

  .panimg img {
    width: 100%; 
    height: auto;
    margin-bottom: 20px; 
  }

  h2, h3, p {
    padding-left: 10px;
    padding-right: 10px;
  }
}