:root {
    --color-white: #F8F3EA;
    --color-light-blue: #9ECCFA;
    --color-dark-blue: #0B1957;
    --color-light-blue2: #D1E8FF;
  
    --t-uncut-sans: "UncutSans", sans-serif;
    --t-mauline: "Mauline", sans-serif;
  }
  
  @font-face {
    font-family: Mauline;
    src: url("/fonts/Mauline.otf") format("opentype");
  }
  
  @font-face {
    font-family: UncutSans;
    src: url("/fonts/UncutSans-Regular.otf") format("opentype");
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    font-weight: normal;
  }
  
  body {
    min-height: 100vh;
    color: var(--color-dark-blue);
    background: var(--color-white);
    line-height: 1.2;
    font-family: var(--t-uncut-sans);
    font-size: 16px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
  }

  h1 {
    font-family: var(--t-mauline);
    font-size: 6rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    text-align: center;
    transition: all 1s;
    text-transform: uppercase;
  }

  h1:hover {
    color: var(--color-light-blue);
    transition: all 1s;
  }

  p {
    font-size: 1.5rem;
    text-align: center;
  }

  .phone {
    text-decoration: underline;
    color: var(--color-dark-blue);
  }