body {
  background-color: #353b47;
  font-family: "Merriweather Sans", sans-serif;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  overscroll-behavior-x:unset;
  overflow-x: hidden;
}

a,
a:hover {
  color: inherit;
  text-decoration: none;
}

.navbar {
  background-color: #00acc1;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 72px;
  width: 100vw;
}

.navbar-left {
  display: flex;
  align-content: flex-start;
  flex-direction: row;
  padding-left: 24px;
}

.navbar-right {
  display: flex;
  align-content: flex-end;
  flex-direction: row;
  padding-right: 36px;
}

.navbar-logo {
  margin: 5px;
  width: 64px;
}
#photoWikiLogo {
  fill: white;
}

.navbar-site-name {
  align-items: center;
  display: flex;
  font-size: 36px;
  margin: 0 5px;
  padding-top: 8px;
  text-align: center;
}

.navbar-item {
  align-items: center;
  display: flex;
  font-size: 18px;
  justify-content: center;
  margin: 0 5px;
  padding-top: 8px;
  text-align: center;
}

.container {
  color: white;
  margin: 100px 24px 48px 24px;
  padding: 0;
  width: calc(100vw - 50px);
}

.page-wrapper {
  background-color: #1f222a;
  border-radius: 10px;
  border: 2px solid #666;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.page-content {
  line-height: 140%;
  text-align: left;
  padding: 16px;
  width: calc(100% - 40px);
}

.page-content h1 {
  font-family: "Merriweather Sans", sans-serif;
  font-size: 48px;
  text-align: center;
  width: 100%;
}

.page-content h2 {
  font-family: "Merriweather Sans", sans-serif;
  font-size: 24px;
  margin-top: 48px;
  width: 100%;
}

.page-content p {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 18px;
  font-weight: normal;
  width: 100%;
}

.page-content img  {
  max-width: 75%;  
}

.button {
  background-color: #00acc1;
  padding: 5px 10px;
  margin-top: 24px;
  color: white;
  font-size: 18px;
  border-radius: 8px;
  width: 150px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.tile-wrapper {
  align-items: center;
  display: flex;
  height: calc(100vh - 72px);
  justify-content: center;
  width: 100vw;
}
.tile {
  align-items: center;
  background-color: #1f222a;
  border-radius: 10px;
  border: 2px solid #666;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 2vw;
  max-width: 45vw;
  outline: unset;
  text-align: center;
  text-decoration: none;
  width: 45vw;
}

.tile:hover {
  border-color: #00acc1;
}

.tile:hover .tile-title {
  color: #00acc1;
}
.tile-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 400px;
  width: 100%;
}

.tile-title {
  width: 100%;
  height: 65px;
  padding: 5px 0;
  font-size: 48px;
  color: white;
}

@media screen and (max-width: 750px) {
  .tile-wrapper {
    flex-direction: column;
    height: 100%;
  }

  .tile {
    margin: 5vw;
    max-width: 90vw;
    width: 90vw;
  }

  .tile-image {
    height: 200px;
  }
}

@media screen and (max-width: 480px) {
  .navbar {
    display: flex;
    flex-direction: column;
    height: 120px;
    justify-content: flex-start;
  }

  .navbar-left {
    width: 100%;
  }

  .navbar-right {
    width: auto;
    padding-left: 36px;
  }
}
