html {
    font-size: 18px;
  }
  body {
    color:black;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    background-color: #5d9e07;
    background-image: linear-gradient(
        45deg,
        #89ed05 25%,
        transparent 25%,
        transparent 75%,
        #89ed05 75%,
        #89ed05
      ),
      linear-gradient(
        -45deg,
        #89ed05 25%,
        transparent 25%,
        transparent 75%,
        #89ed05 75%,
        #89ed05
      );
    background-size: 60px 60px;
    background-position: 0 0;
    animation: slide 4s infinite linear;
  }
  
  @keyframes slide {
    from {
      background-position: 0 0;
    }
  
    to {
      background-position: -120px 60px;
    }
  }
  
  .modal {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 1.6rem 3rem;
    border: 3px solid black;
    border-radius: 5px;
    background: white;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
  }
  .message {
    font-size:1.1rem;
    margin-bottom: 1.6rem;
    margin-top: 0;
  }
  .btn {
    color:inherit;
      font-family:inherit;
    font-size: inherit;
    background: white;
    padding: 0.3rem 3.4rem;
    border: 3px solid black;
    margin-right: 2.6rem;
    box-shadow: 0 0 0 black;
    transition: all 0.2s;
      cursor: pointer;
  }
  
  .btn:last-child {
    margin: 0;
  }
  
  .btn:hover {
    box-shadow: 0.4rem 0.4rem 0 black;
    transform: translate(-0.4rem, -0.4rem);
    color: rgb(2, 4, 131);
    font-weight: bold;
      cursor: pointer;
  }
  
  .btn:active {
    box-shadow: 0 0 0 black;
    transform: translate(0, 0);
  }
  
  .options {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  

  a:link,
a:visited,
a:hover,
a:active {
    color: inherit;
    text-decoration: none;
}

p {
    color:rgb(2, 4, 131);
}
