* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
  text-decoration: none;
  list-style-type: none;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #1e3c72;
  /* background: linear-gradient(45deg, #1e3c72 0%, #2a5298 100%); */
}

header {
  color: white;
  background-color: rgb(0, 110, 182);
  width: 100%;
  font-size: 19px;
}

.nav-big-screens a {
  color: white;
  padding: 16px 10px;
}

.nav-big-screens a:hover {
  background-color: rgb(37, 146, 218);
  color: black;
}

nav {
  height: 60px;
  margin-left: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-big-screens {
  height: 100%;
  display: flex;
  align-items: center;
}

/* styles for parents container small nav bar on the side */
.active {
  position: relative;
  display: flex;
  justify-content: right;
}

/* styles for small nav bar on the side */
.nav-small-screens {
  position: absolute;
  background-color: rgb(0, 110, 182);
  margin: 10px 0 15px 0;
}


main {
  padding: 20px 5px 20px 5px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(auto, 300px));
  grid-template-rows: repeat(auto-fit, minmax(250px, 1fr));
  justify-content: center;
  align-items: center;
}

section {
  background-color: #cce8f6;
  width: 100%;
  height: 300px;

}

section h1,
p {
  text-align: center !important;
  padding: 2px 0;
}

span {
  color: grey;
  font-weight: 700;
}

.image_container {
  width: 100%;
  height: 62.9%;
}

img {
  width: inherit;
  height: 100%;
  object-fit: cover;
}

footer {
  margin-top: 10px;
  background-color: #2a5298;
  padding: 10px;
}

footer p {
  text-align: center;
}

#lastModified {
  font-size: 23px;
}

#currentyear {
  color: white;
}


