/* @font-face {
    font-family: Lato;
    src: url(font/Lato-Regular.ttf);
  } */
  html, body {
    margin: 0;
    /* height: 100%; */
  }

  main {
    margin-top: 4em;
    margin-left: 4em;
    margin-right: 4em;
  }
  
  html * {
    font-family: Lato;
  }

  .navbar {
    overflow: hidden;
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    width: 100%; /* Full width */
    border-radius: 5px;
    background-color: #89CFF0;
  }
  
  .navbar a {
    float: left;
    color: black;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-size: 18px;
    line-height: 25px;
    border-radius: 4px;
  }
  
  .navbar a.logo {
      font-size: 25px;
      font-weight: bold;
  }
  
  .navbar a:hover {
    background-color: #ddd;
    color: black;
  }
  
  .navbar a.active {
    background-color: dodgerblue;
    color: white;
  }
  
  .navbar-right {
    float: right;
  }

  html {
    background-color: #034694;
  }

  .flex-container {
    display: flex;
    margin-top: 20px;
    background-color: #B0C4DE;
    justify-content: center;
    align-items: center;
    height: 400px;
    border-radius: 10px;
    border: 2px solid black;
  }

  .flex-child {
    flex: 1;
  }

  .flex-child img{
    width: 300px;
  }

  .flex-child{
    font-size: 30px;
    text-align: center;
  }

  button {
    background-image: linear-gradient(to right, #a1c4fd 0%, #c2e9fb 51%, #a1c4fd 100%);
    border: 2px solid black;
    color: black;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 10%;
  }
  
  button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }
  
  button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
  }
  
  button:hover{
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
  }
  
  button:hover span {
    padding-right: 25px;
  }
  
  button:hover span:after {
    opacity: 1;
    right: 0;
  }

  .flex-container2, .flex-container3{
    display: flex;
    margin-top: 20px;
    background-color: #B0C4DE;
    justify-content: center;
    align-items: center;
    height: 400px;
    border-radius: 10px;
    border: 2px solid black;
  }

  .flex-child2, .flex-child3{
    flex: 1;
  }

  .flex-child2 img, .flex-child3 img{
    width: 300px;
  }

  .flex-child2, .flex-child3{
    font-size: 30px;
    text-align: center;
  }
