@import "records.css";

* {
  box-sizing: border-box;
}


body {
  background-color: #7ED5EA;
}

.home-main {
  background-attachment: fixed;
  background-image: url(/background.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100vw;
  height: 100vh;
}

.home-main .logged-out {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.nav-grid {
  display: grid;
  grid-template-areas: 'nav-grid-main nav-grid-minor';
}
.nav-flexcontainer {
  background-color: #0F2557;
  border: 1px solid white;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin: 0px;
  padding: 0px;
}
.nav-flexcontainer:last-of-type {
  justify-content: flex-end;
}
.nav-flexcontainer li {
  background-color: #7ED5EA;
  border: 1px solid white;
  list-style-type: none;
  margin: 3px;
  padding: 3px;
}
.nav-flexcontainer a {
  text-decoration: none;
}


@media screen and (max-width: 1000px) {
/* small screen */
  .nav-grid {
    grid-template-areas:
      "nav-grid-main"
      "nav-grid-minor";
  }
  .nav-flexcontainer {
    flex-direction: column;
  }
}


h1 {
  color: #0F2557;
}
