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

  @font-face {
    font-family: 'Suisse';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/Suisse/SuisseIntl-RegularWebM.woff2') format('woff2');
  }

  @font-face {
    font-family: 'Carbonic';
    font-style: bold;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/Carbonic/POICarbonicTrial-Bold.woff2') format('woff2');
  }
  
  body {
    background-color: #1a1a1a; /* Equivalent to bg-gray-800 */
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    font-synthesis-weight: none;
    text-rendering: optimizeLegibility;
    font-family: 'Suisse', sans-serif;
    font-size: 1em;
  }
  
  .container {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
  }


  .background-logo {
    background-image: url('images/logo-background.png');
    background-size: auto;
    background-repeat: no-repeat;
  }

    
  .heading-container {
    margin-left: auto;
    margin-right: auto;
    width: 95vw;
    max-width: fit-content; /* 672px */
    display: flex;
    flex-direction: column;
    align-items: start;
    flex: 5;
    justify-content: center;
}
  
  .beta-end {
    text-transform: uppercase;
    color: #EB88EF;
    font-size: calc(1rem + 1vw);
  }

  .table-flip-gradient {
    background: linear-gradient(134.13deg, #E7692C 15.4%, #EB88EF 59.88%);
    -webkit-background-clip: text;
    color: transparent;
    background-clip: text;
    font-weight: 600;
    font-spacing: 0.01em;
    font-size: calc(1em + 2vw);
    margin-top: 0.5em;
  }

  .socials-container {
    display: flex;
    flex-direction: row;
    max-width: 95vw;
    align-items: flex-end;
    flex: 1;
    justify-content: flex-end;
  }

  .socials--item {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-bottom: 1em;
  }

  .socials--item a {
    /* text-decoration: none; */
    font-size: calc(1em + 0.5vw);
    color: #EB88EF;
    margin-right: 1em;
    display: block;
  }

  .socials--item img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }



  /* Responsive adjustments for background-shape */
  @media (min-width: 800px) {
    /* sm */
    /* .background-logo {
      left: calc(50% - 18rem);
    } */
  }
  
  .heading {
    font-size: calc(2em + 2vw);
    font-weight: 600; /* font-semibold */
    letter-spacing: -0.025em; /* tracking-tight */
    color: #ffffff;
    font-family: 'Carbonic', sans-serif;
    margin-top: 0.5em;
  }
