
.container-img{

    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;

    & #spider{
        margin-top: 20px;
        width: 400px;
        height: 250px;
    }

}

/* Modo claro */
@media (prefers-color-scheme: light) {
  body {
    background-color: white;
    color: black;
  }

  p{
    color: black;
  }
}

/* Modo oscuro */
@media (prefers-color-scheme: dark) {
  body {
    background-color: #121212;
    color: white;

    
  }

}

section{
    margin-top: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;

    & div > p {
        width: 50%;
        margin-left: auto;
        margin-right: auto;
        text-align:justify; /* texto alineado tipo periódico */
        font-size: 1.1rem;
        line-height: 1.6;
        word-break: break-all;
        
    }
}

