@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap");

body {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  box-sizing: border-box;
  overflow: hidden;
}
h1 {
  color: #333;
  font-size: 32px;
  max-width: 600px;
}
p {
  color: #aacfdd;
}

footer {
    display: flex;
    width: 100%;
    text-align: center;
}

main {
    min-height: calc(100vh - 108px);
}

.center-text_max-width {
    width: 450px;
}

.center-text {
  text-align: center;
}

.border-layout {
  display: block;
  width: 100%;
  justify-content: center;
}

.hero {
    background-color: #1e4a56;
}

.content-width {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.shelf {
    display: flex;
    width: 100%;
}

.stack-column {
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.medium-spacer {
    display: block;
    width: 100%;
    height: 60px;
}

.flex-start {
    justify-content: flex-start;
}

.flex-center {
    justify-content: center;
}

.flex-apart {
    justify-content: space-between;
}

.dark-background {
  background-color: #0a0f13;
}

.dark-background_medium {
  background-color: #153b46;
}

.light-text {
  color: #aacfdd;
}

.large-padding {
  padding: 0px 24px;
  box-sizing: border-box;
}

.menu-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.menu-logo {
  border: none;
  cursor: pointer;
  align-content: center;
  text-decoration: none;
  width: 100px;
}

.menu-nav ul {
  display: flex;
  list-style-type: none;
}

.menu-nav ul li a {
  text-decoration: none;
  margin: 0px 10px;
}
