html {
  box-sizing: border-box;
}

* body {
  font-family: "Open Sans";
  font-weight: 400;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
body {
  font-family: "Open Sans";
  font-weight: 400;
}

/* nesting */
.header {
  background-color: #FFF0ED;
  padding: 2.25rem;
  display: flex;
  justify-content: space-evenly;
  text-decoration: none;
  position: sticky;
  z-index: 4;
}
.header .logo {
  width: auto;
  height: 2rem;
  text-decoration: none;
}

.header__logo, .header__navlinks {
  display: flex;
  flex: content;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-end;
  text-decoration: none;
  font-size: 1.3125rem;
  padding: 1.25rem;
  margin: 0;
  color: black;
  border-radius: 1.25rem;
}

.header__title {
  font-size: 3.75rem;
  font-weight: 300;
  text-decoration: none;
  color: black;
  display: inline;
  border-radius: 1.25rem;
}

.header__navlinks a {
  display: inline;
  padding: 1.25rem;
  text-decoration: none;
  font-size: 1.3125rem;
  font-weight: 400;
  color: black;
}

.header__navlinks a:hover {
  color: #5BACC3;
}

.nitroheader {
  background-color: white;
  color: black;
  font-weight: 300;
  font-size: 3rem;
}

.navlink {
  background-color: rgb(255, 255, 255);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: normal;
  text-align: left;
}

/* Menu */
h1 {
  display: flex;
  width: 18.75rem;
  margin: 0px 40%;
  height: 12.5rem;
  background-color: #393939;
  color: white;
  font-size: 3.75rem;
  font-weight: 300;
  padding: 10px 20px;
  /* text-align: center; */
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.outer-border_menu {
  border: #5BACC3 solid 0.3125rem;
  width: 20.75rem;
  height: 13.5rem;
  position: relative;
  top: 12.5rem;
  left: 36.5rem;
  transition: transform 0.5s ease-in-out, opacity 0.1s ease-in-out;
}
.outer-border_menu:hover {
  transform: translateY(1.25rem);
  opacity: 0.5;
}

.hero {
  width: 100%;
  height: 43.75rem;
  background-image: url(/Assets/images/coffee-circle.jpg);
  background-position: center;
  background-size: cover;
}

.headers {
  font: size 6.25rem;
  font-weight: 300;
  margin: 0;
}

nav {
  width: 100%;
  height: auto;
  background-color: #393939;
  color: white;
  text-align: center;
  font-size: 1.3125rem;
}

div1 {
  display: flex;
  background-color: #393939;
  color: white;
  font-size: 1.3125rem;
  padding: 1.25rem;
  width: 100%;
  height: 5rem;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: baseline;
}

.divider {
  display: inline-block;
  text-align: center;
  margin: 1.25rem;
}

.subnavigations a {
  padding: 0.375rem;
  border-left: 0.25rem solid #5BACC3;
}

h3 {
  font-weight: 300;
  font-size: 2.0625rem;
  text-align: center;
  margin: 0rem;
  padding: 0rem 1.25rem;
}

h2 {
  text-align: center;
  font-size: 3.75rem;
  text-align: center;
  padding: 1.25rem;
}

p {
  font-size: 1.3125rem;
  font-weight: 400;
  font-style: italic;
  width: 31.25rem;
  text-align: center;
  margin: 0% 33%;
}

.pink {
  background-color: #FFF0ED;
  text-align: center;
}

.gray {
  background-color: #F7F7F7;
  text-align: center;
}

p1 {
  color: #5BACC3;
  text-align: center;
  font-size: 1.125rem;
}/*# sourceMappingURL=menu.css.map */