   body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color:white/*#FFF8E1;*/
			scroll-behavior: smooth;
        }
		

    /* HEADER */
    header {
      background: white;
      padding: 10px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    /* about */
    .about {
      background: black;
      color: white;
      padding: 20px 20px;
	  text-align:center;
    }

    .about h1 {
      font-size: 36px;
      margin-bottom: 10px;
	  text-align:center;
    }

    .hbutton {
      background:white;
      display: inline-block;
      padding: 5px 15px;
      color: black;
      border-radius: 5px;
      font-size: 18px;
      font-weight: bold;
    }
	
	.hbutton:hover{
		background:grey;
		}

    /* CONTENT */
.content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 60px 60px;
  background-color: #fff;
  flex-wrap: wrap;
}

    .gallery-container {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 20px;
      padding: 20px;
      max-width: 1200px;
      margin: auto;
    }

    .gallery-item {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      text-align: center;
    }

    .gallery-item img {
      width: 100%;
      height: 400px;
      object-fit: cover;
    }

    .image-name {
      padding: 10px;
      font-size: 16px;
      color: #444;
    }
	
	
.footer{
	width:100%;
	}
.footer .footer_container{
min-height:40%;
max-width:100%;
background-color:black;
color:white;
padding:10px;
}
.footer_container .button{
	display:inline;
	padding:10px;
	}
.footer_container .button a{
text-decoration:none;
color:white;
font-size:20px;
}
.button_social {
    display: grid;
    grid-template-columns: 1.5fr 0.2fr; /* Two equal columns */
    gap: 5px; /* Space between divs */
    width: 100%;
	padding-top:15px;
}
.footer .social{
float:left;
text-align:right;
display:flex;
gap:15px;
}