html {
  scroll-behavior: smooth;
}

body,
body * {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #E8E8E8;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

a {
  color: #d0191b;
  text-decoration: underline;
  transition: all .3s;
}

a:hover {
  color: #8d080a;
}

#Header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #000;
}

#Header .menu {
  padding: 15px 0;
}

#Header .menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

#Header .menu ul li {
  list-style: none;
}

#Header .menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  padding: 5px 10px;
}

#Header .menu ul li a:hover {
  color: #8d080a;
}

.main-bg {
  margin-top: 92px;
  min-height: 100dvh;
  width: 100%;
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
}

.gallery {
  padding-top: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.gallery .image {
  width: 430px;
  height: 430px;
  overflow: hidden;
  border: 2px solid #fff;
  display: flex;
}

.gallery .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-info {
  padding-top: 92px;
  padding-bottom: 30px;
  max-width: 800px;
  margin: 0 auto;
}
.contact-info p {
  font-size: 20px;
  line-height: 26px;
}

#Footer {
  background: #262121;
  padding: 30px 0;
}

#Footer p {
  margin: 0;
  font-size: 16px;
  color: #fff;
  text-align: center;
}
