/* bold */
@font-face {
    font-family: 'Trade Gothic LT Std';
    src: url('TradeGothicLTStd-Bold.otf') format('woff2'),
        url('TradeGothicLTStd-Bold.otf') format('woff');
    font-weight: bold;
    font-style: normal;
}

body{
    background: #464646 url(new-event.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    overflow: hidden;
    font-size: 12px;
}

.site-logo{
    display: block;
    text-align: center;
    margin: 3em auto 0;
}

.site-logo img {
    max-width: 300px;
}

.country-prompt{
    height: calc(100vh - 180px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.country-prompt>h1 {
    font-family: sans-serif, 'Trade Gothic LT Std', sans-serif;
    font-size: 2.0em;
    color: ghostwhite;
    margin: 1em auto 0;
    text-align: center;
    font-weight: 300;
}

.countries {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding-top: 75px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

/*.kenya img, .uganda img, .rwanda img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: -18px 0;
}*/

.countries a {
    text-align: center;
    text-decoration: none;
    display: block;
}
.countries a img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid #fff;
}

.countries h2 {
    font-family: 'Trade Gothic LT Std', sans-serif;
    font-size: 1.5em;
    color: #201b1b;
    text-align: center;
    padding: 15px 35px;
    background: floralwhite;
    border: none;
    position: relative;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 3px;
    cursor: pointer;
  }

  .countries h2:hover::before, .countries h2:hover::after{  
      border: 3px solid #cab281;
  }

  .countries h2:hover{
      background: none;
      color: floralwhite;
  }

  .countries h2:after, .countries h2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border: 2px solid #000;
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
  }
  .countries h2:after {
    -webkit-transform: translate(3px, 3px);
            transform: translate(3px, 3px);
  }
  .countries h2:before {
    -webkit-transform: translate(-3px, -3px);
            transform: translate(-3px, -3px);
  }
  .countries h2:hover:after, .countries h2:hover:before {
    -webkit-transform: translate(0);
            transform: translate(0);
  }

