body {
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    margin:0;
    padding:0;
}

.top-matter{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-template-rows:repeat(1,1fr);
    margin:0;
    padding: 0;
    column-gap: 0;
    row-gap: 0;
    width:100%;
}

.navbar {
    margin-top: 0rem;
    display: flex;
    grid-column: span 2;
    width: 100%;
    height: 3em;
    background-color: #003f5c;
    color: #fffff0;
    font-size: 1.5em;
    z-index:1000;
    align-items: center;
}

.navbar a {
    color: white;
    text-decoration: none;
    height: auto;
    padding-left: 1em;
    padding-right: 1em;
    align-self: center;
}

.navbar a:hover {
    background-color: #4682b4;
    border-radius: .25rem;
    box-shadow: 1rem .5rem 1rem rgba(0, 0, 0, 0.589);
}

.burger {
  display: none;
  flex-direction: column;
  width:25px;
  height: 20px;
  justify-content: space-between;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger .bar {
  width: 100%;
  height: 3px;
  background-color: white;
  transition: 0.3s;
}

.logo{
    margin-top: .5em;
    margin-bottom: .5em;
    width: 5;
    height: auto;
}

.menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
}

.menu a {
    padding: .5rem 1 rem;
}

.menu-button {
    display:none;
    font-size: 1.5rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.hero{
    grid-column: span 2;
    background: url("/images/hero_cropped.jpg") no-repeat;
}

.hero-img{
    width:100%;
    height:calc(100vh-0);
    object-fit:contain;
}

.banner{
    grid-column: span 2;
    width: 100%;
    background: yellow;
    color: red;
    height: auto;
    justify-items: center;
    row-gap: 0;
    line-height: .5vh;
}

.banner h1 {
    font-size: 1.5vw;
}

.banner p{
    font-size: 1vw;
}
