/* Style for the logo tab */
.logo-tab {
  background-color: #333; /* Background color for the logo tab */
  padding: 20px 0; /* Adjust the padding as needed */
  text-align: center;
}

/* Style for the logo */
.logo {
  display: inline-block;
  max-width: 100%;
  height: 40px; /* Limit the height of the logo to 50 pixels */
}

/* Style for the buttons tab */
.buttons-tab {
  background-color: rgb(70, 70, 70); /* Background color for the buttons tab */
  padding: 20px 0; /* Adjust the padding as needed */
  padding-bottom: 30px;
  text-align: center;
}

/* Style for the buttons */
.buttons {
  margin-top: 10px;
}

.buttons a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  padding: 10px 20px;
  border: 2px solid #fff;
  margin: 0 20px;
  border-radius: 5px;
}

.buttons a:hover {
  background-color: #fff;
  color: #333;
}

.buttonarea {
  text-align: center;
  background-color: #F1EFEF;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Add your CSS styles here */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FAF1E4;
}

header {
  margin-top: 10px ;
  margin-right: 10px ;
  margin-left: 10px ;
  background-color: #CCC8AA;
  color: #191717;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
}

main {
  padding: 10px;
}

.home {
  text-align: justify;
  background-color: #F1EFEF;
  padding: 5px;
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px;
}

/* Center-align the button container */
.button-container {
  text-align: center;
  margin-top: 0px; /* Add some space at the top if needed */
}
  
  /* Base Button Styles */
.custom-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #CCC8AA;
  color: #191717;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 16px;
  text-decoration: none; /* Remove default link underline */
}
  
  /* Hover Effect */
.custom-button:hover {
  background-color: #191717;
  color: #CCC8AA;
  transform: scale(1.05); /* Slight zoom effect on hover */
}
  
/* Focus (Keyboard Navigation) */
.custom-button:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.8); /* Light blue shadow on focus */
}