@font-face {
  font-family: 'Fruti-Regular';
  src: url('fonts/Fruti-Regular.eot');
  src: url('fonts/Fruti-Regular.eot?#iefix') format('embedded-opentype'),
    url('fonts/Fruti-Regular.woff2') format('woff2'),
    url('fonts/Fruti-Regular.woff') format('woff'),
    url('fonts/Fruti-Regular.ttf') format('truetype'),
    url('fonts/Fruti-Regular.svg#Fruti-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Fruti-Bold';
  src: url('fonts/Fruti-Bold.eot');
  src: url('fonts/Fruti-Bold.eot?#iefix') format('embedded-opentype'),
    url('fonts/Fruti-Bold.woff2') format('woff2'),
    url('fonts/Fruti-Bold.woff') format('woff'),
    url('fonts/Fruti-Bold.ttf') format('truetype'),
    url('fonts/Fruti-Bold.svg#Fruti-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

.content {
  width: 100%;
  max-width: 100%;
}

.overlay {
  position: fixed;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  pointer-events: none;
  /* Add this line */
}

.overlay .content {
  pointer-events: auto;
  /* Add this line */
}

.page-text {
  font-family: 'Fruti-Regular';
  color: white;
  font-size: 24px;
  margin-bottom: 20px;
}

.logo {
  max-width: 340px;
  margin: 0 auto;
}


.content {
  background-image: url("images/bg.jpg");
  background-size: cover;
  display: flex;
  justify-content: space-between;
  height: 100vh;
}

.left-section,
.right-section {
  width: 50%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.left-section {
  background-color: rgba(73, 47, 87, 0.8);
}

.right-section {
  background-color: rgba(43, 84, 94, 0.8);
}

.left-section h2,
.right-section h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.left-section .menu-button {
  background-color: #492F57;
}

.right-section .menu-button {
  background-color: #2b545e;
}

.menu-button {
  font-size: 24px;
  font-family: 'Fruti-Regular';
  padding: 40px;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.right-section .menu-button:hover {
  background-color: rgba(43, 84, 94, 0.8);
  border: 1px solid #CEB994;
  color: #CEB994;
}

.left-section .menu-button:hover {
  background-color: rgba(73, 47, 87, 0.8);
  border: 1px solid #CEB994;
  color: #CEB994;
}

footer {
  background-color: #713052;
  padding: 20px;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
}

.social-icon {
  display: inline-block;
  margin: 0 20px;
  color: white;
  /* Set the color to white */
  font-size: 24px;
  /* Adjust the font size as needed */
  transition: color 0.3s ease;
  /* Add a smooth color transition effect */
  margin-right: 10px;
}

.social-icon:hover {
  color: #f1f1f1;
  /* Set the hover color */
}

.social-text {
  margin: 0 20px;
  font-family: 'Fruti-Regular';
  color: white;
  align-items: center;
  display: flex;
  font-size: 16px;
  /* Adjust the font size as desired */
}

.top-image img {
  width: 360px;
  height: auto;
  padding: 10px;
}

.top-image {
  position: absolute;
  top: -50px;
  left: -30px;
  z-index: 1;
}

@media (max-width: 768px) {
  .top-image {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
    top: -30px;
    left: -20px;
  }

  .top-image img {
    width: 180px;
  }

  .overlay {
    top: 0;
    justify-content: flex-start;
  }

  .page-text {
    margin-top: 100px;
  }

  .logo {
    max-width: 250px;
  }

  .left-section,
  .right-section {
    width: 100%;
  }

  .menu-button {
    margin-top: 240px;
    padding: 20px;
  }

  .social-icons {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .social-icon {
    margin-right: 10px;
  }

  .social-text {
    order: 1;
    margin-left: 20px;
  }

  .social-icon-group {
    display: flex;
    justify-content: center;
  }
}