html {
  scroll-behavior: smooth;
}

html,
body {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  min-height: 100vh;
  margin: 0 auto;
  overflow-x: hidden;
  width: 100vw;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-image: linear-gradient(to bottom,
      #bda485 0%,
      #bda485 5%,
      #f4eddc 100%);
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  align-items: center;
  color: white;
  display: flex;
  flex: 1 0 auto;
  min-height: 64px;
  justify-content: space-between;
  margin: 16px 0 0 0;
  width: 100%;
  z-index: 1;
}

.main-menu-item {
  cursor: pointer;
  font-size: 0.7rem;
  padding: 12px 20px;
  text-transform: uppercase;
}

.main-menu-item.active {
  border: 1px solid white;
}

.logo {
  margin: 0 1rem 0 8px;
}

.logo-container {
  align-items: center;
  display: flex;
  gap: 0.25rem;
}

.logo-img {
  height: 80px;
}

.logo-text {
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}

nav {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 24px 0 0;
}

nav span {
  margin: 0 10px;
}

main {
  flex: 1 0 100%;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

main:after {
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.15) 40%,
      rgba(0, 0, 0, 0) 100%);
  content: '';
  height: 300px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

h1 {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

section {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
}

section:first-of-type {
  margin-top: 64px;
}

.section-title {
  margin: 48px 0 24px 0;
  text-align: center;
}

.section-content {
  display: flex;
  font-family: inherit;
  font-size: 0.9rem;
}

section.announcements .section-content {
  align-items: center;
  flex-wrap: wrap;
  font-family: inherit;
  justify-content: center;
  line-height: 1.5rem;
  text-align: center;
  white-space: pre-line;
}

section.announcements .announcement-text {
  margin: 16px 24px;
}

section.announcements .announcement-image {
  max-width: 400px;
}

section.about-masa .section-content {
  flex-direction: row;
  margin: 24px 0 0 0;
  max-width: 1100px;
}

.masa-photo {}

.masa-description {
  color: rgba(0, 0, 0, 0.87);
  font-size: 0.9rem;
  line-height: 1.5rem;
  margin: 0 64px 0 128px;
}

section.location .section-content {
  display: flex;
  justify-content: space-between;
}

section.location .contacts p {
  text-align: center;
}

footer {
  min-height: 200px;
}