body {
  font-family: 'Verdana', sans-serif;
  margin: 0;
  padding: 1em;
}

h1 {
  text-align: center;
  color: #2196F3;
  margin: 0px 0px 30px 0px;
}

h2 {
  text-align: start;
  color: #2196F3;
  margin: 10px 30px;
}

p {
  margin: 20px 30px;
  text-align: justify;
  text-justify: distribute-all-lines;
}

ul {
  margin: 20px 30px 20px 20px;
}

.container {
  display: grid;
  grid-template-columns: 2fr 1fr;
}

.content {
  grid-column: 1 / 2;
  padding: 40px 20px 40px 20px;
  border-width: 1px; /* width of the border */
  border-style: solid; /* style of the border */
  border-color: #2196F3;
  border-radius: 10px; /* round the border with 10px radius */
}

.content-center {
  display: flex;
  align-items: center; /* Vertically center the content */
  justify-content: center; /* Horizontally center the content (optional) */
}

.content-end {
  grid-column: 2 / 3;
  padding: 0px 0px 0px 20px;
}

.menu {
  grid-column: 2 / 3;
}

.grid-container {
    display: grid;
    margin: 20px 30px;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(100px, auto);
    justify-content: space-evenly;
    justify-items: center;
    align-content: space-evenly;
    align-items: center;
}

.img-background {
    padding: 20px;
    background-color: #2196F3;
    border-radius: 20px;
}

.caption-text {
  color: #2196F3;
  text-align: justify;
  text-justify: distribute-all-lines;
}

nav {
  background-color: #f5f5f5; /* background color of the nav container */
  padding: 15px; /* padding around the container */
  margin: 0px 20px;
}

nav ul {
  list-style: none; /* remove bullet points from list items */
  margin: 0; /* remove margins from the list */
  padding: 0; /* remove padding from the list */
  text-align: start; /* center the list items */
}

nav a {
  color: #333; /* text color of the links */
  text-decoration: none; /* remove underline from the links */
  font-size: 18px; /* font size of the links */
}

nav a:hover {
  color: #0099cc; /* change the text color on hover */
}

.footer-content {
  padding: 10px 0px 10px 0px;
}

.footer-para {
    text-align: center;
}

/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #2196F3;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #45a049;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
}

.icon {
    font-size: 32px;
    margin-right: 20px;
}

.info-item span {
    font-size: 24px;
}

.info-item strong {
    font-weight: bold;
}
