body {
    margin:0;
    font-family: 'Plus Jakarta Sans', sans-serif;
      width: 100vw;
      height: 100vh;
      background: linear-gradient(45deg,#322F81, #B56182, #DD6C45 , #CBB565,#C2EEC3, #98E2F9);
      background-size: 600% 100%;
      animation: gradient 16s linear infinite;
      animation-direction: alternate;
  }
  @keyframes gradient {
      0% {background-position: 0%}
      100% {background-position: 100%}
  }

  .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: center;
    text-align: center;
  }

  svg {
    max-width: 540px;
    padding: 0 40px;
    box-sizing: border-box;
    width: 100%;
    filter: drop-shadow(0px 0px 30px rgb(0 0 0 / 0.1));
  }

  h1 {
    font-weight: 300;
    font-size: 26px;
    line-height: 40px;
    color: white;
    margin: 85px 0 35px;
    padding: 0px 40px;
    filter: drop-shadow(0px 0px 8px rgb(0 0 0 / 0.1));
  }

  a {
    color: #393939;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
    line-height: 28px;
    padding: 8px 20px;
    background-color: #EFD702;
    border-radius: 6px;
  }

  @media screen and (max-width: 560px) {
    h1 {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 25px;
    }

    a {
        font-size: 16px;
    line-height: 25px;
    }
  }