#main {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 20px;
}


.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


nav.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}


.menu a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 10px;
  width: 240px;
  text-decoration: none;
  color: white;
  font-size: 16px;
  transition: background 0.3s;
  line-height: 1; /* Добавлено для корректного выравнивания */
}

.menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.menu-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}


.menu-label {
    margin-left: 16px;
    font-weight: 400;
    font-size: 16pt;
}

footer {
    padding: 20px 0;
    font-size: 14pt;
    color: white;
}

a {
    border-bottom: none;
}