:root {
    --bg: #D8DDEF;
    --text: #3E000C;
    --accent: #FB4B4E;
  }

  body{
    background-color: var(--bg);
    color: var(--text);

    padding: 0;
    margin: 0;
  }

  .wrapper {
    min-width: 100vw;
    min-height: 100vh;

    position: relative;
    box-sizing: border-box;

    padding: 24px;
    gap: 24px;

    display: flex;
      flex-direction: column;
      flex-wrap: nowrap;
      justify-content: space-between;
      align-items: center;
      align-content: center;
  }

  .container {
    flex-grow: 1;
    width: 100%;
    max-width: 800px;
  /*   height: 100%; */

    position: relative;
    box-sizing: border-box;

    display: flex;
      flex-direction: column;
      flex-wrap: nowrap;
      justify-content: space-between;
      align-items: center;
      align-content: stretch;

    gap: 24px;
  }

  .edge {
    font-family: "prestige-elite-std", monospace;
    font-weight: 700;
    font-style: normal;

    text-transform: uppercase;

    color: var(--accent);
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    @media screen and (max-width: 800px) {
      font-size: 16px;
      line-height: 24px;
    }
  }

  .center {
    font-family: "swear-display", serif;
    font-weight: 300;
    font-style: normal;

    color: var(--text);
    font-size: 72px;
    line-height: 80px;
    @media screen and (max-width: 800px) {
      font-size: 32px;
      line-height: 40px;
    }
    @media screen and (max-width: 347px) {
      font-size: 28px;
      line-height: 36px;
    }
  }

  .accent {
    color: var(--accent);

    font-family: "swear-display-cilati", serif;
    font-weight: 300;
    font-style: normal;
  }