* {
  margin: 0;
  box-sizing: border-box;
}

body{
  background-color: #b0c4de;
  font-family: verdana, sans-serif;
}

/* NAVBAR */
  header{
    width: 100%;
    background-color: #006d5b;
    color: #b0c4de;
  }

  header h1{
    padding: 0.5em 15vw;
    width: 100%;
    border-bottom: 1px solid #b0c4de;
  }

  ul{
    list-style-type: none;
    padding: 0.5em 15vw 0;
    overflow: hidden;
  }

  ul li{
    float: left;
    margin: 0 0.5em 0.75em;
    padding-right: 1.5em;
    border-right: 1px solid #b0c4de;
  }

  ul li:hover{
    text-decoration: underline wavy 0.13em;
  }

  #first{
    text-decoration: underline wavy 0.13em;
  }

  #floatright{
    float:right;
    margin-right: 3em;
    border-right: none;
    padding-left: 0.5em;
    border-left: 1px solid #b0c4de;
  }

  #countries{
    background-color: #b0c4de;
    color: #000;
    padding-top: 0.5em;
  }

  #countries li{
    border-right: 1px solid #666;
  }

  .last{
    border: none;
  }

/* MAIN */
  main{
    padding: 0 15vw;
    display: flex;
    flex-direction: column;
  }

  .bimg, .simg{
    width: 100%;
  }

  .side, .text{
    padding-left: 15px;
  }

  .content{
    display: grid;
  }

  .small{
    width: 50%;
  }

  .text{
    width: 100%;
  }

  .onefouroh{
    grid-template-columns: 1fr 1fr;
  }

  .twobytwo, .onetwofour, .threebytwo{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .ohonesix{
    grid-template-columns: 1fr 3fr;
  }

  .threebytwo .text{
    width: 33%;
  }

  .onetwofour, .oneandtwo{
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .ohthreetwo{
    display: grid;
    grid-template-columns: 3fr 1fr;
  }

  .threebyone{
    display: flex;
    flex-direction: row;
  }

  .onebytwo{
    display: flex;
    flex-direction: column;
  }

  #nation, #banner, #ten, .content{
    width: 100%;
    padding: 2em 0;
  }

  #ten{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .tentext{
    margin: 0 2.5%;
    padding: 1.5%;
    width: 28%;
    display: flex;
    border-top: 1px solid #006d5b;
  }

  .tentext h1{
    width: 20%;
    padding-right: 1.75em;
    color: #006d5b;
  }

  #nation, #banner{
    background-color: #006d5b;
    color: #b0c4de;
    display: flex;
    justify-content: center;
    font-size: 2em;
    font-weight: bolder;
  }

/* MISC BITS */
  h2:hover, h3:hover, .tentext p:hover{
    color: #006d5b;
    text-decoration: underline;
  }

  span, .category{
    color: #006d5b;
  }

  .small, .big, .text, .side{
    position: relative;
    padding-bottom: 2em;
  }

  .category{
    position: absolute;
    bottom: 0.5em;
  }

  .text{
    height: 50%;
  }