@import "normalize.css";

.tools {
  padding: 5rem 10rem;

  color: #333333;

  a {
    text-decoration: none;
    color: #333333;
  }

  .tool {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    background-color: #ffffff;
    border-radius: 1rem;

    padding: 1rem;

    &:hover {
      transform: scale(1.05);
    }
  }

  h1 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 3rem;
  }

  img {
    width: 5rem;
  }
}

.documents {
  padding: 0 10rem;
  padding-bottom: 5rem;
  color: #333333;

  h1 {
    font-size: 3rem;
    text-align: center;
  }

  .document-content {
    display: flex;
    flex-direction: column;

    gap: 2rem;
  }

  a {
    width: auto;

    padding: 0 2rem;

    font-size: 1.5rem;
    background-color: #ffffff;
    border-radius: 1rem;

    color: #333333;

    &:hover {
      transform: scale(1.05);
    }
  }
}