  @font-face {
    font-family: 'Millionaire';
    src: url('./Font/Millionaire-Script.woff2') format('woff2'),
      url('./Font/Millionaire-Script.woff') format('woff'),
      url('./Font/Millionaire-Script.ttf') format('truetype');
  }

  body {
    background-color: black;
    color: white;
  }

  .container {
    text-align: center;
    margin-top: 15%;
  }

  h1 {
    font-family: 'Millionaire', serif;
    font-size: 8em;
    font-weight: lighter;
    margin: 0;
  }

  p {
    font-family: 'Millionaire', serif;
    font-size: 1.8em;
    font-weight: lighter;
    margin: 0;
  }

  a {
    color: white;
    font-family: 'Millionaire', serif;
    font-size: 1.8em;
    font-weight: lighter;
    margin: 0;
    outline: none;
    text-decoration: none;
    padding: 2px 1px 0;
  }

  /* large phones ≥568px */
  @media screen and (max-width: 35.5em) {
    .container {
      margin-top: 60%;
    }

    h1 {
      font-size: 3.8em;
    }

    a {
      font-size: 1em;
    }
  }

  /* large phones ≥568px */
  @media screen and (min-width: 35.5em) {
    .container {
      margin-top: 60%;
    }

    h1 {
      font-size: 3.8em;
    }

    a {
      font-size: 1em;
    }
  }

  /* large phones / Tablets ≥768px */
  @media screen and (min-width: 48em) {
    .container {
      margin-top: 38%;
    }

    h1 {
      font-size: 5.3em;
    }

    a {
      font-size: 1.5em;
    }
  }

  /* Laptops ≥1024px */
  @media screen and (min-width: 64em) {
    .container {
      margin-top: 38%;
    }

    h1 {
      font-size: 7.3em;
    }

    a {
      font-size: 1.9em;
    }
  }

  /* Laptops / Desktop ≥1280px */
  @media screen and (min-width: 80em) {
    .container {
      margin-top: 15%;
    }

    h1 {
      font-size: 7.3em;
    }

    a {
      font-size: 1.9em;
    }
  }

  /* Laptops / Desktop ≥1920px */
  @media screen and (min-width: 120em) {
    .container {
      margin-top: 15%;
    }

    h1 {
      font-size: 8em;
    }

    a {
      font-size: 1.9em;
    }
  }