@charset "UTF-8";

body {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background-image:url(img/azure_blue_bkgr--sg.png);
  background-repeat: repeat-x;
  background-attachment: fixed;
  background-size: contain;
  font-family: 'Inria Serif', serif;
}
h2 {
  font-size: 1rem;
  text-align: center;
}
h2 a:link, h2 a:visited {
  text-decoration: none;
  color: #ffffff;
}
h2 a:hover, h2 a:active {
  text-decoration: none;
  color: blue;
}
footer {
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%);
}
footer p {
  font-size: .7rem;
  text-align: center;
  color: #fff;
}
footer ul {
  text-align: center;
  list-style-type: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
}
footer ul li {
  display: inline;
  padding: 0 4px 0 4px;
  font-size: .9rem;
  font-weight: bold;
}
.flex-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: normal;
  margin: 0 auto;
  margin-top: 15vh;
  width: 68%;
  text-align: center;
}
.flex-items:nth-child(1) {
  display: block;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  align-self: auto;
  order: 1;
}
.flex-items:nth-child(2) {
  display: block;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  align-self: auto;
  order: 2;
}
.flex-items:nth-child(3) {
  display: block;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  align-self: auto;
  order: 3;
}
.flex-items img {
  max-width: 300px;
  border: 10px #fff solid;
  border-radius: 10px;
  box-shadow: 2px 2px 4px 2px #01348696;
}
a {
  transition: 1s ease;
  text-decoration: none;
}
a:link, a:visited {
  color: #0000b7;
}
a:hover, a:active {
  color: #ffffff;
}


@media (orientation: portrait) {
  footer {
    position: static;
    transform: none;
    margin-bottom: 24px;
    margin-left: 10%;
    margin-right: 10%;
  }
  footer p {
    font-size: .7rem;
    text-align: center;
  }
  footer ul {
    margin: 1.2rem 0 2.5rem 0;
  }
  footer ul li {
    font-size: 1.1rem;
  }
  
}


@media only screen and (max-width: 1400px) {
  .flex-container {
    width: 72%;
  }
  .flex-items img {
    max-width: 250px;
  }
}


@media only screen and (max-width: 1250px) {
  .flex-container {
    width: 80%;
  }
  .flex-items img {
    max-width: 80%;
  }
}

@media only screen and (max-width: 768px) {
  .flex-container {
    width: 90%;
  }
  .flex-items img {
    max-width: 72%;
  }
}

@media only screen and (max-width: 600px) {
  .flex-container {
    margin-top: 10vh;
    flex-direction: column;
  }
  .flex-items {
    margin-bottom: 2rem;
  }
  .flex-items img {
    max-width: 50%;
  }
}

@media only screen and (max-width: 375px) {
  .flex-container {
    width: 96%;
  }
  .flex-items img {
    max-width: 60%;
  }
}


