@font-face {
  font-family: 'Lato-Regular';
  src: url('../fonts/Lato-Regular.ttf') format('opentype');
  font-style: normal;
}

:root {
  font-size: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato-Regular";
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Top Bar */
.top-bar {
  background: #2b9f67;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  height: 8.5vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Banner */
.banner {
  flex: 1;
  width: 100%;
  height: 92vh;
  position: relative;
  overflow: hidden;
}

.banner a {
  display: block;
  width: 100%;
  height: 100%;
}

.banner picture {
  width: 100%;
  height: 100%;
}

.banner img {
  width: 100%;
  height: 92vh;
  display: block;
  object-fit: cover;
}

/* Footer */
.bottom {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 1.5rem 2vw;
  font-size: 1.2rem;
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom a {
  color: #fff;
  text-decoration: none;
  margin: 0 0.5em;
  font-size: 1.2rem;
}

.bottom a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {

  .top-bar {
        height: 10vh;
        font-size: 1.15rem;
        padding: 2rem 1rem;
  }

  .banner {
    height: 82vh;
  }

  .banner img {
    height: 82vh;
  }

  .bottom {
    font-size: 1rem;
    padding: 1rem 4vw;
  }

  .bottom a {
    margin: 0;
  }
}