/* CSS Document */

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;
}

.info {
  max-width: 100%;
  }

.info h2 {
  font-size: 26px;
  color:black;
  margin-bottom: 12px;
}

.info p {
  color:black;
  line-height: 1.6;
  margin-bottom: 18px;
  font-size:18px;
}

.btn {
  background: black;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

.btn:hover{
	background:grey;
	}


.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;
}