@font-face {
    font-family: DTGetai;
    src: url(fonts/DTGetaiGroteskDisplay-Black.otf);
}

@font-face {
    font-family: Switzer;
    src: url(fonts/Switzer-Regular.otf);
}

:root {
  --gradient-pos-x: 50%;
  --gradient-pos-y: 50%;
  --border-radius: 99999px;
  --border-gap: 2px;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    background-color: #0D0D0D;
    color: white;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
}

.text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    max-width: 100px;
    height: auto;
    margin-top: 24px;
}

h1, h2, p {
    font-family: DTGetai, sans-serif;
    display: flex;
    text-align: center;
}

h1 {
    font-size: 5rem;
}

a {
    text-decoration: none;
    color: white;
    font-family: Switzer, sans-serif;
    font-size: 18px;
}


/* Button Styling */

.button {
  position: relative;
  display: inline-block;
  border: none;
  border-radius: var(--border-radius);
  background: gray;
  position: relative;
  padding: var(--border-gap);
  cursor: pointer;
  margin-bottom: 24px;
}

.content {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  padding: 1rem 2rem;
  white-space: nowrap;
  color: #ffffff;
  background-color: #0d0d12;
  border-radius: var(--border-radius);
  width: calc(100% - var(--border-gap));
  height: calc(100% - var(--border-gap));
}

.border,
.neon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.neon {
  filter: blur(10px);
  opacity: 0.5;
}

.gradient {
  position: absolute;
  inset: -200px;
  background: conic-gradient(
    from 0deg at var(--gradient-pos-x) var(--gradient-pos-y),
    #1e87ff,
    #5c13c4,
    #ff0033,
    #ffda00,
    #64bc26,
    #1e87ff
  );

  border-radius: var(--border-radius);
  animation: rotate 4s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) and (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
}

@media (min-width: 412px) and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1rem;
    }
}

@media (min-width: 320px) and (max-width: 412px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: .75rem;
    }
}