* {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    padding: 0;
    background: #f0f2f5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
  }

  .container {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    max-width: 800px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  h1 {
    text-align: center;
    color: #222;
    margin-bottom: 30px;
  }

  h2 {
    color: #007bff;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  ol, ul {
    margin: 0;
    padding-left: 20px;
  }

  li {
    margin-bottom: 12px;
  }

  .box {
    background: #f9f9f9;
    padding: 20px;
    border-left: 4px solid #007bff;
    border-radius: 8px;
  }

  .box a {
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
  }

  .box a:hover {
    text-decoration: underline;
  }

  @media (max-width: 600px) {
    .container {
      padding: 20px;
    }
}

.logo_tutorial {
    background-image: url(../images/logos/DigitalZone.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 500px;
    height: 300px;
    transition: transform 0.3s ease, filter 0.3s ease;
}


.translate-tutorial {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
