:root {
    --background-color: #272727;
    --box-background-color: #343a40;
    --button-color: #B19777;
    --text-color: #ffffff;
  }
  
  body {
    background-color: var(--background-color);
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: var(--text-color);
  }
  
  .main-container {
    display: flex;
    flex-direction: row; /* Display containers in a row on desktop */
    gap: 20px;
    width: 100%;
    max-width: 800px; /* Limit width of the main container */
  }
  .container {
   
    border-radius: 20px;
    padding: 20px;
   
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .image-box {
    width: 100%;
    margin-bottom: 20px;
    height:350px
  }
  
  .image-box img {
    width: 100%;
    border-radius: 10px;
  }
  
  .heading {
    font-size: 1.5em;
    font-weight: 600;
    margin: 10px 0;
  }
  
  .description {
    font-size: 0.9em;
    font-weight: 300;
    margin-bottom: 20px;
    max-width: 300px;
  }
  
  .box-button {
    background-color: var(--button-color);
    border: none;
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    align-self: center;
  }
  
  .box-button:hover {
    background-color: #A18765;
  }
  
  @media (max-width: 768px) {
    .main-container {
      flex-direction: column;
      align-items: center;
    }
  
    .container {
      width: 100%;
      max-width: 400px;
    }
  }
  .bottom-text {
    
    bottom: 20px;
    text-align: center;
    width: 100%;
    color: var(--text-color);
  }
  
  .sign-in {
    color: #B19777;
    text-decoration: none;
    font-weight: bold;
  }
  
  .sign-in:hover {
    text-decoration: underline;
  }
  .parent-container {
    display: flex;
    flex-direction: column; /* Stack main-container and bottom-container vertically */
    align-items: center; /* Center align horizontally */
  }
  .container {
    flex: 1;
    /* max-width: 300px; Control the width of each container */
  }
  
  .bottom-container {
    width: 100%;
    margin-top: 20px; /* Space between containers and text */
  }
  
  .bottom-text {
    text-align: center;
    color: var(--text-color);
  }
  
  .sign-in {
    color: #B19777;
    text-decoration: none;
    font-weight: bold;
  }
  
  .sign-in:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    .main-container {
      flex-direction: column; /* Stack containers vertically on mobile */
      align-items: center;
    }
  
    .container {
      width: 100%;
      max-width: none; /* Allow full width on mobile */
      margin-bottom: 20px; /* Space between containers */
    }
  }