@font-face {
  font-family: "e-ukraine-regular";
  src: url("fonts/e-ukraine-regular_w.ttf") format("truetype");
}

@font-face {
  font-family: "e-ukrainehead-regular";
  src: url("fonts/e-ukraineHead-Regular_w.ttf") format("truetype");
}

:root {
  --light-brown: #877676;
  --brown: #482a2a;
  --white: #f2f0f0;
  --yellow: #fffbd5;
  --header-shawow: 0px 4px 4px rgba(135, 118, 118, 0.4);
}

.hero-head {
  font-family: "e-ukrainehead-regular";
	background-color: var(--brown);
	text-align: center;
  height: 16vh;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.hero-body {
  font-family: "e-ukraine-regular";
  align-items: flex-start;
  .menu-list {
    padding-left: 20px;
    .menu-list-item {
      color: white;
      margin-bottom: 25px;
      .button {
        color: rgba(0, 0, 0, 1);
        border-radius: 10em;
        font-weight: 600;
        background-color: var(--white);
        &:hover, &:focus, &:active {
          background-color: var(--light-brown);
          color: var(--white);
          border-color: var(--light-brown);
        }
      }
    }
  }
  &.photo-background {
    background: linear-gradient(rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.50)), url(images/background.png) no-repeat;
    background-size: cover;
    background-position: center;
  }
}

.title {
	color: var(--yellow);
	font-size: 32px;
	letter-spacing: 0;
  line-height: 0.8;
}

.subtitle {
	color: var(--yellow);
	font-size: 16px;
	letter-spacing: 0;
  margin-bottom: 10px;
}

.backbtn {
  color: var(--white);
  :hover {
    color: var(--light-brown);
  }
  margin-right: 5px;
}

.carousel-container {
  overflow: hidden;
  img {
    max-width: 1200px;
  }
}
p {
  margin-bottom: 20px;
}

p.annotation {
  margin-bottom: 40px;
  text-align: center;
}
p.author {
  color: #999999;
  margin-top: 40px;
  margin-bottom: 0px;
  font-size: small;
  text-align: left;
}

.splide {
  img {
    height: 100px;
    width: auto;
  }
}

img.img {
  /* box-shadow: 0px 4px 4px rgba(135, 118, 118, 0.4); */
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  width: 110%;
  height: auto;
  margin-top: 20px;
  margin-bottom: 10px;
  &:first-child {
    margin-top: -48px;
  }
}

@media (max-width: 768px) {
  img.img {
    width: 100%;
  }
  .title {
    font-size: 24px;
    letter-spacing: 0;
    line-height: 0.9;
  }
  .subtitle {
    font-size: 16px;
    letter-spacing: 0;
    margin-bottom: 10px;
  }
}

