img {
  max-width: 100%;
  height: auto;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: #c84444;
  font-family: "Anton", sans-serif;
}

.menu-page {
  min-height: 100vh;
  padding: 48px 28px 60px;
  box-sizing: border-box;
}

.menu-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
}

.menu-logo-link {
  text-decoration: none;
}

.menu-logo {
  width: 112px;
  height: auto;
  display: block;
}

.menu-close {
  color: #f2d8d8;
  text-decoration: none;
  font-size: 42px;
  line-height: 1;
  font-weight: 400;
}

.menu-nav {
  display: flex;
  flex-direction: column;
}

.menu-item {
  color: white;
  text-decoration: none;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: 0.2px;
  padding: 0 0 10px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.42);
  margin-bottom: 8px;
  position: relative;
}

.menu-item.active::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: white;
}
