/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url('./montserrat.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
    box-sizing: border-box;
    font-family: 'Montserrat';
}
  body {
    background-color: #005ca9;
    text-align: center;
    font-size: large;
  }

  /* Style the header */
  header {
    background-color: #005ca9;
    text-align: center;
    font-size: 35px;
    color: white;
  }

  header img {
    width: 100%;
    height: auto;
  }

  #wrapper {
    width: 75%;
    text-align: left;
    margin: auto;
    color: white;
  }

  th, td {
    padding-right: 50px;
    padding-bottom: 10px;
  }

  .container .article {
    float: left;
    width: 50%;
  }
  .container .team {
    float: right;
    width: 50%;
    padding-left: 20px;
    margin-top: 22.41px;
  }

  hr {
    color: white;
    text-decoration: none;
  }
  
  a img {
    display:inline-block;
    height: 1em;
  }

  a:link { 
    text-decoration: none; 
    color: white;
  } 
  a:visited { 
    text-decoration: none; 
    color: white;
  } 
  a:hover { 
    text-decoration: none; 
    color: white;
  } 
  a:active { 
    text-decoration: none; 
    color: white;
  }

  /* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */
  @media (max-width: 1080px) {
    
    header {
      font-size: 20px;
    }

    #wrapper {
      width: 90%;
      text-align: left;
      margin: auto;
      color: white;
    }

    th, td {
      padding-right: 5px;
      padding-bottom: 10px;
    }

    .container .article {
      width: 100%;
    }
    .container .team {
      width: 100%;
      padding-left: 0px;
      padding-bottom: 20px; 
    }
  }
