@charset "UTF-8";

body {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 2rem;
    background-color: #f8f8f8;
    color: #333;
  }

  h1, h2 {
    color: #2D9830;
  }

  section {
    background: white;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  img{
    width: 100%;
  }

  pre {
    background-color: #eee;
    padding: 1rem;
    overflow-x: auto;
    border-radius: 5px;
  }

  code {
    font-family: monospace;
  }

  .app {
    display: inline-block;
    padding: 0.6em 1.2em;
    background-color: #007acc;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  button {
    background-color: #2D9830;
    color: white;
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
  }

  button:hover {
    background-color: #2D9830;
  }

  ol {
    padding-left: 1.2rem;
  }

  ol li {
    margin: 0.3rem 0;
  }
