:root {
    --primary-color: rgb(30, 84, 159);
    --box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
    --font-family: fantasy;
  }

  h1 {
    font-size: 44px;
    line-height: 60px;
    font-family: var(--font-family);
    font-weight: 400;
    margin: 20 auto;
    padding: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    background: rgba(30, 84, 159, 0.3);
    box-shadow: var(--box-shadow);
    text-shadow: 5px 5px 5px rgb(0, 0, 0, 0.5);
  }

  h2 {
    color: var(--primary-color);
    font-size: 34px;
    font-family: var(--font-family);
    font-weight: normal;
    line-height: 40px;
    margin-top: 30px;
    text-shadow: 5px 5px 10px var(--primary-color);
  }

  img {
    max-width: 100%;
    margin: 30px auto;
    border-radius: 10px;
    height: auto;
    box-shadow: var(--box-shadow);
  }

  p {
    line-height: 1.5;
    font-size: 22px;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
      "Lucida Sans", Arial, sans-serif;
    margin: 30px 50px;
  }

  button {
    display: block;
    margin: 0 auto;
    font-size: 40px;
    font-family: var(--font-family);
    background-color: var(--primary-color);
    color: white;
    border: 3px solid rgb(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 15px 30px 15px 30px;
    box-shadow: var(--box-shadow);
    transition: all 200ms ease-in-out;
  }

  button:hover {
    background: white;
    color: var(--primary-color);
    cursor: pointer;
  }

  .page {
    text-align: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 30px 60px;
    border: 3px solid rgba(30, 84, 159, 0.7);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    background: linear-gradient(
      91.3deg,
      rgb(135, 174, 220) 1.5%,
      rgb(255, 255, 255) 100.3%
    );
  }

  .coder {
    font-size: 16px;
    font-family: var(--font-family);
    opacity: 0.7;
  }

  .infoLink {
    text-decoration: none;
    color: var(--primary-color);
  }
  
  .infoLink:hover {
    text-decoration: underline;
  }

  @media (max-width: 960px) {
    h1 {
      font-size: 32px;
      line-height: 1.5;
    }

    h2 {
      font-size: 28px;
    }

    p {
      margin: 20px 0;
    }

    button {
      font-size: 24px; 
    }
  
    .coder {
      font-size: 12px;
    }

    .page {
      padding: 10px 20px;
    }
  }