*{margin: 0;
    padding:0;}

    .columns {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

    .column1{
        container-type: inline-size; /* el ancho del contenedor será la referencia */
        container-name: nav-col;
        position: fixed;
        background-color: rgb(255, 255, 255);
        width: 36%;
        height: 100%;
        display: flex;
    }

    .column2{
        background-color: rgb(255, 255, 255);
        width: 100%;
        margin-left: 36%;
        font-family: monospace;
        font-size: 30px;
        display: flex;
        flex-wrap: wrap;
    }

    .image{
        width: 100%;
        aspect-ratio: 5 / 3;
        border-radius: 10px;
        background-color: rgb(230, 230, 230);
        margin: 10px 20px 10px 20px;
        overflow: hidden;
    }
    
    img{
       margin: 0;
       width: 100%;
       aspect-ratio: 5 / 3;
       object-fit: cover;
       filter: grayscale(100%) blur(6px);
       transition: .3s ease-in-out;
    }
    img:hover{
        margin: 0;
       width: 100%;
       aspect-ratio: 5 / 3;
       object-fit: cover;
       filter: grayscale(0%) blur(0px);
    }

    nav{
        margin-top: 80px;
        margin-left: 35px;  
    }

    .nav{

        font-family: Helvetica;
        font-weight: 900;
        color: rgb(48, 48, 48);

  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;


  /* Escalar con el ancho del contenedor */
  font-size: clamp(12px, 90cqw, 90px);
    }

    