@font-face {
  font-family: vagSerif;
  src: url(fonts/Linotype-VAGRoundedStd-Light.otf)
}

@font-face {
  font-family: vagSerifBold;
  src: url(fonts/Linotype-VAGRoundedStd-Black.otf)
}

h1 {
  font-family: vagSerifBold;
  margin-top: 31px;
}

.logo-container {
  display: flex;
  justify-content: center;
}

@media(max-width: 375px) {
  .logo-container {
    flex-wrap: wrap;
  }
}

.logo-container > img {
  width: 90px;
  margin-right: 8px;
}

body {
  background-color: #f5f5f5;
  color: #000;
  font-family: vagSerif;
}

.container {
  margin-right: auto;
  margin-left: auto;
  margin-top: 10%;
  max-width: 80%;
  text-align: center;
}

a, a:hover, a:visited, a:active, a:focus {
  color: inherit;
  text-decoration: none;
}

.details-container {
  display: flex;
  width: 100%;
  justify-content: center;
}

@media(max-width: 375px) {
  .details-container {
    flex-wrap: wrap;
  }
}

.detail-item {
  padding: 45px 10px;
  width: 240px;
  max-width: 240px;
  max-height: 155px;
  min-height: 155px;
  box-shadow: 0 0 3px #a3a3a3;
  border-radius: 5px;
  margin: 5px;
  text-align: center;
  transition: all .3s;
  background-color: #fff;
}

  .detail-item > img {
    width: 70px;
    transition: all .3s;
  }

  .detail-item:hover {
    background-color: #89b642;
  }

    .detail-item:hover > h3 {
      color: #fff;
    }

    .detail-item:hover > p {
      color: #fff;
    }

    .detail-item:hover > img {
      width: 50px;
      transition: all .3s;
    }
