@charset "UTF-8";
/* CSS Document */
body {
      font-family: 'Montserrat', sans-serif;
      background-color: white;
      color: black;
      padding: 60px 20px;
      text-align: center;
}

.contact-section {
	padding: 60px 20px;
}

.contact-header {
	font-size: 2.5rem;
	margin-bottom: 10px;

}

/* Hamburger icon */
    .hamburger {
      font-size: 32px;
      position: fixed;
      top: 20px;
      right: 25px;
      z-index: 1001;
      cursor: pointer;
      color: black;
      transition: color 0.3s ease;
    }

    /* Slide-out menu */
    .side-menu {
      height: 100%;
      width: 0;
      position: fixed;
      top: 0;
      right: 0;
	  height: 100vh;
      background-color: #000;
      overflow-y: auto;
      transition: 0.4s;
      padding-top: 60px;
      z-index: 1000;
    }

    .side-menu a {
      padding: 12px 30px;
      text-decoration: none;
      font-size: 22px;
      color: white;
      display: block;
      transition: 0.3s;
    }

    .side-menu a:hover {
      background-color: #333;
    }

    .content-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      margin-top: 50px;
      gap: 40px;
    }