img {
  object-fit: cover;
}
@font-face {
  font-family: "Helvetica";
  src: url("../font/helvetica.otf") format("opentype");
}
@font-face {
  font-family: "Andalemk";
  src: url("../font/andalemk.ttf");
}
@font-face {
  font-family: "28 Days Later";
  src: url("../font/28dayslater.ttf");
}
body {
  min-width: 1024px;
  background: rgba(69, 75, 81, 0.9);
}
header {
  display: flex;
  z-index: 999;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  background: rgba(69, 75, 81, 0.7);
  height: 100px;
  color: white;
  transition: all 200ms ease-in-out;
}
header .menu {
  display: flex;
  height: 100%;
}
header .menu > div {
  padding: 0 5px;
  margin: 0 10px;
  display: flex;
  transition: all 200ms ease-in-out;
  position: relative;
}
header .menu > div > a {
  margin: auto;
  transition: all 200ms ease-in-out;
  border-bottom: 1px solid transparent;
}
header .menu > div div {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.97);
}
header .menu > div div ul {
  list-style-type: disc;
  padding: 10px 40px 10px 28px;
  color: #3e4447;
}
header .menu > div div ul li {
  line-height: 30px;
  font-size: 15px;
}
header .menu > div div ul li a {
  font-size: 17px;
  font-family: Andalemk, sans-serif;
  color: #3e4447;
}
header .menu > div:hover {
  background: rgba(102, 107, 112, 0.7);
  cursor: pointer;
}
header .menu > div:hover > a {
  border-bottom: 1px solid white;
}
header .menu > div:hover div {
  display: flex;
}
header .social {
  display: flex;
}
header .social p {
  margin: 0 10px;
}
.yearsButtons {
  display: flex;
  justify-content: flex-end;
  padding-right: 80px;
  height: 100px;
  align-items: center;
}
.yearsButtons p {
  font-family: "Andalemk";
  color: white;
  margin: 0 15px;
  font-size: 30px;
  letter-spacing: -0.7px;
  cursor: pointer;
}
.photos {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
}
.photos img {
  width: 300px;
  height: 200px;
  margin: 0 10px 40px;
  border-radius: 5px;
  cursor: pointer;
}
.modal {
  display: none;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(69, 75, 81, 0.9);
  justify-content: center;
}
.modal svg {
  fill: white;
  position: absolute;
  z-index: 10;
  height: 100px;
  width: 50px;
  top: calc(50vh - 50px);
  border: 0;
  opacity: 0.5;
  cursor: pointer;
  transition: all 200ms ease-in-out;
}
.modal svg.prev {
  left: 20px;
}
.modal svg.next {
  right: 20px;
}
.modal svg.close {
  top: 20px;
  right: 20px;
  height: 70px;
  width: 70px;
}
.modal svg:hover {
  opacity: 0.9;
}