html,
body {
  background-color: #F4F7FA;
  font-family: Open Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  margin: 0;
  padding: 0;
  display: flex;               
  justify-content: center;     
  align-items: center;         
  min-height: 768px;
}

/* Main Container */
.main-container {
  display: grid;
  grid-template-columns: 30% 40% 30%;
  height: 760px;
  max-width: 1366px;
  max-height: 768px;
  margin: 0 auto;
}

.img-404-container {
  background-image: image(url("./404.png"));
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 760px;
  width: 100%;
  max-width: 1366px;
  max-height: 768px;
}

/* Right Column */
.right-column {
  padding: 10px;
  /* width: 33.33%; */
}

.logo-container {
  text-align: center;
}

.logo-image {
  width: 90%;
}

/* Middle Column */
.middle-column {
  padding: 10px;
  text-align: center;
}

.chatbot-container {
  margin-top: 25px;
  padding: 10px;
  text-align: center;
  background-color: #E3EAFD;
  border-style: dotted;
  border-width: 1px;
  border-radius: 20px;
}

/* Left Column */
.left-column {
  padding: 10px;
  text-align: center;
}

.name-container {
  padding: 10px;
  margin-top: 50px;
  text-align: center;
}

.name-image {
  width: 90%;
}

.description-container {
  text-align: center;
  padding: 10px;
  margin-top: 25px;
}

.description-text {
  color: #7A8691;
}

.description-text-bold {
  color: #7A8691;
  font-weight: bold;
}

.description-button-container {
  padding: 10px;
  color: #F4F7FA;
  font-weight: bold;
  background-color: #5dade2;
  border-radius: 5px;
  border-color: #5dade2;
}

/* Footer */
.footer-container {
  position: fixed;
  left: 0;
  bottom: 0; 
  width: 100%;
  text-align: center;
  color: #4A5568;
  /* height: 9vh; */
  font-size: smaller;
}

/* Maintain 3 columns until the screen is smaller */
@media (max-width: 1024px) {
  .container {
      grid-template-columns: repeat(3, 1fr); /* Keep 3 columns */
  }
}

/* Stack into 1 column for mobile screens */
@media (max-width: 600px) {
  .container {
      grid-template-columns: 1fr; /* Change to 1 column for small screens */
  }
}