/* CSS per la pagina */
		.instagram-feed {
			display: flex;
			flex-wrap: wrap;
			align-items: center;
			justify-content: center;
			margin: 0 auto;
			max-width: 800px;
		}
		
		.instagram-feed img {
			width: 100%;
			height: auto;
			margin: 10px;
			object-fit: cover;
			border-radius: 10px;
		}
		
        .instagram-feed .photo-container {
            width: calc(33.33% - 20px);	
            margin-bottom: 20px;
            padding-right: 20px;
        }
        
        .instagram-feed .photo-container:nth-child(3n) {
            padding-right: 0;
        }
        
        .instagram-feed .photo-container img {
            width: 100%;
            height: auto;
            margin-bottom: 10px;
            object-fit: cover;
            border-radius: 10px;
        }
        
        .instagram-feed .photo-container p {
            font-size: 14px;
            line-height: 1.5em;
            margin-bottom: 0;
            font-family: 'Helvetica Neue', sans-serif;
        }
		.expandable-text {
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
	   		color:#fff; 
	 		 padding-left: calc((100vw - 850px) / 2);
	 		padding-right: calc((100vw - 850px) / 2);
	  		
        }
        .expand-button {
            cursor: pointer;
			color:#fff; 
			 padding-left: calc((100vw - 850px) / 2);
	 		padding-right: calc((100vw - 850px) / 2);
        }
        @media only screen and (max-width: 768px) {
            .instagram-feed .photo-container {
                width: 100%;
                margin-bottom: 20px;
                padding-right: 0;
            }
        }
		
        /* CSS per il riquadro */
        .box {
          background-color:#000000; 
          border-radius:10px; 
          padding-left:10px; 
          padding-right:10px; 
          padding-top:5px; 
          padding-bottom:5px; 
          margin-bottom:20px; 
          color:#fff; 
          font-size:.9em; 
          line-height:normal; 
          font-family:'Helvetica Neue', sans-serif; 
          text-align:center; 
          display:inline-block; 
          width:auto; 
          max-width:none; 
          min-width:none; 
          height:auto; 
          max-height:none; 
          min-height:none; 
          overflow:hidden; 
          text-overflow:none; 
          white-space:normal; 
        }
        
        /* CSS per centrare l'immagine */
        .box img {
            display:block;
            margin:auto;
        }
		
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: black;
  align-items: center;
  justify-content: center;
}
.navbar {
            
            top: -50;
            width: 100%;
            height: 50 px;
            background-color: : #000000;
            
            padding: 5px;
        }
        .transparent {
            background-color: transparent;
        }
        .content {
            margin-top: 2px;
            height: 2000px;
        }
.navbar img {
  width: 200px;
  height: 50px;
}


table {
  border-collapse: collapse;
  width: 100%;
  margin: auto;
}

table, th, td {
  border: 0px solid black;
}
img.full-width {
  width: 100%;
  display: block;
  margin: auto;
}
td img {
  max-width: 100%;
  height: auto;
}		
  a:link, a:visited {
        color: white;
        text-decoration: none;
      }


      .slideshow-container {
        max-width: 100%;
        position: relative;
        margin: auto;
      }

      .mySlides {
        display: none;
      }

      .prev,
      .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        margin-top: -22px;
        padding: 16px;
        color: white;
        font-weight: bold;
        font-size: 18px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
      }

      .next {
        right: 0;
        border-radius: 3px 0 0 3px;
      }

      .prev:hover,
      .next:hover {
        background-color: rgba(0, 0, 0, 0.8);
      }

      .dot {
        cursor: pointer;

        height: 15px;
        width: 15px;
        margin: 0 2px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
      }

      .active,
      .dot:hover {
        background-color: #717171;
      }

.box:hover {
  transform: scale(1.15);
	background-color:lightgray;
}

  .container {
    display: flex;
	  background-color: #cccccc;
  }
.container2 {
    display: flex;
	  background-color: #ffffff;
  }
  
  .left {
    flex: 15%;
  }
  
  .text {
    flex: 45%;
	padding: 20px;
  }
  
  .images {
    flex: 25%;
    display: flex;
    flex-direction: column;
	vertical-align: middle
	padding: 10px;
    
  }
.images img {
  max-width: 100%;
  height: auto;
}
  
  .right {
    flex: 15%;
  }

  
		
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer p {
    font-size: 24px;
    margin: 0;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    margin: 0 10px;
    display: inline-block;
}

.social-icons img {
    width: 30px;
    height: 30px;
}