:root {
    --cyan: #26dad6;
    --purple: #b017fa;
    --red: #bd1e1e;
    --body-background: radial-gradient(circle, #242424, #000000);
    --element-background: radial-gradient(circle, #000000, #09051c);
    --element-color: #6272a4;
}

@keyframes background-waves {
    from {
        background-position: 0% center;
    }
    to {
        background-position: -200% center;
    }
}

body {
    background: var(--body-background);
    height: 100%;
    color: whitesmoke;
    overflow: hidden;
    min-height: 100vh;
    margin: 0;
}

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

.gap {
  gap: 1rem;
}

.rounded {
  border-radius: 1rem;
}

.engineers {
    font-size: 9vw;
    text-shadow: 0px 15vh 3vh #00000077;
}

.rainbow-text {
    animation: background-waves 3s linear infinite;
    background: linear-gradient(to right, var(--cyan), var(--purple), var(--red), var(--cyan));
    -webkit-background-clip: text;
    background-size: 200%;
    -webkit-text-fill-color: transparent;
}

.links {
    font-size: 2vh;
    width: 100vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
}

.tiny {
  font-size: 1vh !important;
  padding: 0.5vh !important;
}

.small {
    font-size: 1vh !important;
    padding: 1.5vh !important;
}

.color-normal {
  color: var(--element-color);
  background: var(--element-background);
  border: none;
}

.button {
    display: inline-block;
    border-radius: 2vh;
    padding: 2vh;
    background: var(--element-background);
    cursor: pointer;
    text-decoration: none;
    border:none;
}

.button {
    color: var(--element-color);
}

.button:visited {
    color: var(--element-color);
}

.button:hover {
    color: var(--cyan);
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    transition: ease-in-out 150ms;
    box-shadow: 0 20px 80px -10px var(--cyan);
}

.button-text {
    font-family: sans-serif;
    font-weight: 600;
    font-size: 2.5vh;
}

@keyframes highlight {
    0%, 100% {
        transform: translate(0, 0px) scale(1);
        transition: all 0.4s cubic-bezier(.47, 1.64, .41, .8);
    }

    25% {
        transform: translate(0, -15px) scale(1);
        transition: all 0.4s cubic-bezier(.47, 1.64, .41, .8);
    }

    50% {
        transform: translate(0, 0px) scale(1);
        transition: all 0.4s cubic-bezier(.47, 1.64, .41, .8);
    }

    75% {
        transform: translate(0, -7px) scale(1);
        transition: all 0.4s cubic-bezier(.47, 1.64, .41, .8);
    }
}

.loader {
  display: inline-block;
  border: 2px solid gray;
  border-top: 2px solid lightblue;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 2s linear infinite;
}

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