
/* Reset margin and padding for all elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* This ensures padding does not affect the total width or height of elements */
}

html, body {
    height: 100%;
    width: 100%;
}

.background-container {
    min-height: 100vh; /* Use viewport height to ensure it covers the full height of the screen */
    background-image: url('bg_image.png'); /* Updated to the correct image name */
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center children horizontally */
    justify-content: center; /* Center children vertically */
}

.main-text {
    font-size: 3em; /* Larger for primary headers */
    font-family: 'Open Sans', sans-serif;
    font-weight: 900; /* Bold weight */
    margin-bottom: 0.75em;
    color: white;
    text-align: center;
    margin-top: 50px
}

.secondary-text_01 {
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 32px;
    margin-top: 75px; /* Space above the secondary text */
    font-style: 36px;
    text-align: center; /* Ensure secondary text is also centered */
}

.secondary-text_02 {
    color: white;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    font-size: 32px; 
    margin-top: 100px; 
    font-weight: bold;
    display: block;
}

.text-telegram {
    color: white;
    font-family: 'Open Sans', sans-serif;
    text-align: left;
    font-size: 24px; 
    margin-top: 100px; 
    font-weight: bold;
    display: block;
}

.text-whatsapp {
    color: white;
    font-family: 'Open Sans', sans-serif;
    text-align: right;
    font-size: 24px; 
    margin-top: 100px; 
    font-weight: bold;
    display: block;
}

.clickable-images-container {
    position: relative; /* This makes it a reference for absolutely positioned children */
    height: 200px; /* Set to the height of your tallest image */
    width: 400px; /* Set to the combined width of both images plus some space */
  }
  
  .clickable-image_telegram,
  .clickable-image_whatsapp {
    position: absolute; /* This takes the links out of the normal flow and positions them relative to their parent */
    top: 20px; /* Adjust the top position as needed */
    margin-top: 40px; 
  }
  
  .clickable-image_telegram img {
    width: 200px; /* This sets the width of your Telegram image */
    height: auto; /* This keeps the aspect ratio of your Telegram image */
  }
  
  .clickable-image_whatsapp {
    left: 300px; /* This positions the WhatsApp link to the right of the Telegram link; adjust as needed based on image width */
  }
  
  .clickable-image_telegram {
    right: 300px; /* This positions the WhatsApp link to the right of the Telegram link; adjust as needed based on image width */
  }
  
  .clickable-image_whatsapp img {
    width: 200px; /* This sets the width of your WhatsApp image */
    height: auto; /* This keeps the aspect ratio of your WhatsApp image */
  }


.secondary-image-container img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* Center image horizontally */
}

/* Responsive adjustments for mobile screens */
@media only screen and (max-width: 600px) {
    .background-container {
        min-height: 100vh;
    }
    .secondary-image-container img {
        max-width: 80%;
    }
}

/* Added styles for image and text alignment */
.clickable-images-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* Adjust the space between items */
}

.clickable-image {
  display: flex;
  flex-direction: column; /* Stack the image and text on top of each other */
  align-items: center; /* Center align the content */
  text-decoration: none; /* Remove underline from links */
}

.text-telegram, .text-whatsapp {
  margin-top: 8px; /* Adjust the space between the image and the text */
  color: #FFF; /* Set the text color */
  /* Add other styling for the text as needed */
}
