/* changes font of text*/
body {
    font-family: Courier New, sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
/* adjusts size of home page logo */
#logo{
  width: 130px;
  height: 100px;
  margin-left: 20px;
  margin-right: 20px;
}
/* adjusts space between lines */
h3 {
  line-height: 26px;
}

h4 {
  line-height: 30px;
  font-family: Courier New;
}
/* changes the menu display */
.menu-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 100%;
    background-color: #19471e;
    overflow: hidden;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.menu-bar > .menu {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu li {
    text-align: center;
    margin-right: 15px;
}

.menu li:last-child {
    margin-right: 0;
}

.menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px; /* Ensures consistent height */
    padding: 0 20px; /* Left and right spacing */
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s;
}

.menu li a:hover {
    background-color: #718571;
}

/* Example for any additional elements */
#rhs {
    width: 300px;
    height: 300px;
    border-radius: 20%;
}

#container {
    width: 900px;
    height: 540px;
   
    background-color: #68826b;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    padding: 30px;
    border-radius: 50px;
  
}
#container1 {
    max-width: 1300px;
    width: 80%;
    height: 1000px;
   
    background-color: #68826b;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin: 0 auto; 
    padding: 20px;
    border-radius: 50px;
  
}

canvas {
  text-align: center;
  margin: 0;
  padding: 0;
  display: block;
}

#container2 {
    width: 1000px;
    height: 700px;
   
    background-color: #68826b;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    padding: 20px;
    border-radius: 50px;
  
}

.quiz-container {
  max-width: 800px;
  margin: 50px auto;
  background-color: #68826b;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}


.question {
  margin-bottom: 25px;
  background-color: #ecf0f1;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
}

.question label {
  padding-left: 3em; /*  Sets the overall indentation of the element */
  text-indent: -2em; 
  display: inline-block; 
}

.question p {
  font-weight: bold;
}

.question label {
  display: block;
  margin: 6px 0;
  cursor: pointer;
}

button[type="submit"] {
  display: block;
  margin: 20px auto;
  padding: 12px 24px;
  background-color: #19471e;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}


feedback {
  text-align: center;
  margin-top: 20px;
  font-size: 18px;
  color: #27ae60;
}

/* CSS for table*/
    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 10px;
    }

    caption {
      caption-side: top;
      font-weight: bold;
      font-size: 1.2em;
      margin-bottom: 10px;
    }

    th, td {
      border: 1px solid #ccc;
      padding: 10px;
      text-align: left;
    }

    th {
      background-color: #f5f5f5;
    }

    tr:nth-child(even) td {
      background-color: #fafafa;
    }
#mapcontainer {
    width: 1050px;
    height: 800px;
   
    background-color: #68826b;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    padding: 20px;
    border-radius: 50px;
  
}
#container4 {
    width: 800px;
    height: 500px;
   
    background-color: #68826b;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    padding: 20px;
    border-radius: 50px;
  
}
