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

:root {
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  line-height: 1.5;
  font-weight: 400;

  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background: rgb(68, 0, 40);
  background: -webkit-linear-gradient(
    135deg,
    #e42c2c,
    #ff0a69,
    #51bddf,
    #afe1f1
  );
  background: linear-gradient(135deg, #e42c2c, #ff0a69, #51bddf, #afe1f1);

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  font-weight: 500;
  color: white;
  text-decoration: inherit;
  display: block;
  width: 100%;
}

a:hover {
  color: white;
}

body {
  margin: 0;
  display: flex;
  place-items: center;
  min-width: 320px;
  min-height: 100vh;
}

h1 {
  font-size: 3.2em;
  line-height: 1.1;
}

main {
  flex: 1;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5vh;
  padding: clamp(12px, 2.5vw, 32px);
}
#root {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.logo {
  height: 6em;
  padding: 1.5em;
  will-change: filter;
  transition: filter 300ms;
}
.logo:hover {
  filter: drop-shadow(0 0 2em #646cffaa);
}
.logo.react:hover {
  filter: drop-shadow(0 0 2em #61dafbaa);
}

@keyframes logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: no-preference) {
  a:nth-of-type(2) .logo {
    animation: logo-spin infinite 20s linear;
  }
}
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}.fancy {
  position: relative;
  padding: 14px;
}

.fancy::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;

  background: linear-gradient(135deg, #e42c2c, #ff0a69, #51bddf, #afe1f1);

  -webkit-mask:
    conic-gradient(from 45deg at left, #000 0 25%, transparent 0) 0 0 / 51% 100%
      no-repeat,
    conic-gradient(from -135deg at right, #000 0 25%, transparent 0) 100% 0 /
      51% 100% no-repeat;
  mask:
    conic-gradient(from 45deg at left, #000 0 25%, transparent 0) 0 0 / 51% 100%
      no-repeat,
    conic-gradient(from -135deg at right, #000 0 25%, transparent 0) 100% 0 /
      51% 100% no-repeat;
}
