* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
   
  @font-face {
    font-family: 'Merriweather';
    src: url("/static/fonts/Merriweather-Black.ttf");
  }
  
  @font-face {
    font-family: 'Jost';
    src: url('/static/fonts/Jost-Black.ttf');
  }
  
  @font-face {
    font-family: 'Inter_lite';
    src: url('/static/fonts/Inter_18pt-Light.ttf');
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  html ::-webkit-scrollbar {
    width: 10px;
    height: 1px;
  }
  
  html ::-webkit-scrollbar-thumb {
    border-radius: 50px;
    background: #22222268;
  }
  
  html ::-webkit-scrollbar-track {
    background: transparent;
  }
  
  @keyframes pulse-bg {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.4;
    }
  }
  
  body {
    font-family: 'Jost', 'Inter', sans-serif;
    color: #CEC9C9;
    background: linear-gradient(135deg, #0B0B0D 0%, #2a2a2a 100%);
    background-attachment: fixed;
    background-size: cover;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
  }
  
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #322538 30%, transparent 70%);
    animation: pulse-bg 10s infinite ease-in-out;
    z-index: -1;
  }

  main {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
  }

main .center {
    width: 50%;
    max-width: 300px;
    text-align: center;
}

main .center .description {
    padding-top: 3rem;
    text-align: center;
  }

  main .center .description button {
    display: block;
    margin-left: auto;
    margin-right: 0;
  }

button {
    display: flex;
    height: 3em;
    width: 100px;
    align-items: center;
    justify-content: center;
    background-color: #eeeeee4b;
    border-radius: 25px;
    letter-spacing: 1px;
    transition: all 0.2s linear;
    cursor: pointer;
    border: none;
    color: #e0e0e0;
    background: radial-gradient(circle, #322538 50%, #33233a 50%);
}
   
   button > svg {
    margin-right: 5px;
    margin-left: 5px;
    font-size: 20px;
    transition: all 0.4s ease-in;
    color: #e0e0e0;
   }
   
   button:hover > svg {
    font-size: 1.2em;
    transform: translateX(-5px);
   }
   
   button:hover {
    box-shadow: 9px 9px 33px #403944, -9px -9px 33px #312637;
    transform: translateY(-2px);
   }