@font-face {
  font-family: "CustomHelvetica";
  src: url(Helvetica.ttf);
}

* {
  font-family: "CustomHelvetica", Arial, Helvetica, sans-serif;
}
.logo_info {
  align-items: center;
  justify-content: center;
  width: 55%;
  margin: 3% auto 0;
  background: rgba(255, 255, 255, 0.171);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15.2px);
  -webkit-backdrop-filter: blur(15.2px);
  border: 1px solid rgba(255, 255, 255, 0.23);
  text-align: center;
}

.logo_info img {
  width: 100%;
  height: auto;
  max-height: calc(100% - 40px);
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: -5px;
}

.logo_info h1 {
  margin-top: 20px;
  padding: 0;
  font-size: 40px;
  z-index: 1;
}

#tagline {
  margin-bottom: 20px;
  margin-top: -20px;
  font-style: italic;
  font-size: 15px;
}

body {
  background-image: linear-gradient(120deg, #121212 0%, #424242 100%);
  color: white;
}

@media screen and (max-width: 500px) {
  .navbar a {
    float: none;
    display: block;
  }
}

@import url(https://fonts.googleapis.com/css?family=Open+Sans);

.search {
  margin: 20px auto 15px;
  width: 100%;
  position: relative;
  display: flex;
}

input {
  font-size: 15px;
  text-indent: 15px;
}

.searchTerm::placeholder {
  color: #ffffffb2;
}

.searchTerm {
  width: 100%;
  border: 3px solid #00bbff;
  border-right: none;
  padding: 5px;
  height: 20px;
  border-radius: 20px 0 0 20px;
  outline: none;
  color: #9dbfaf;
  background: rgba(255, 255, 255, 0.3);
}

.searchTerm:focus {
  color: #ffffff;
}

.searchButton {
  width: 40px;
  height: 36px;
  border: 1px solid #00bbff;
  background: #00bbff;
  text-align: center;
  color: #fff;
  border-radius: 0 20px 20px 0;
  cursor: pointer;
  font-size: 20px;
}

/*Resize the wrap to see the search bar change!*/
.wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding: 20px;
  box-sizing: border-box;
  margin: 0 auto;
}

/* CARDS */
.card-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 70%;
  margin: 0 auto;
}

.card .header img.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0.75rem;
  background-color: #ffffff;
  width: 300px;
  height: 390px;
  margin: 20px;
  flex: 1;
  max-width: calc(50% - 20px);
  box-sizing: border-box;

  background: rgba(255, 255, 255, 0.171);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15.2px);
  -webkit-backdrop-filter: blur(15.2px);
  border: 1px solid rgba(255, 255, 255, 0.23);
}

.header {
  position: relative;
  background-clip: border-box;
  margin-top: 1.5rem;
  margin-left: 1rem;
  margin-right: 1rem;
  border-radius: 0.75rem;
  background-color: rgb(33 150 243);
  height: 14rem;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.header::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -300px;
  opacity: 0.6;
  animation: shine 1.5s ease-out ease-in-out;
}

.header:hover {
  transform: scale(1.05);
}

.header:hover::before {
  animation: shine 1.5s ease-out infinite;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

.info {
  border: none;
  padding: 1.5rem;
  text-align: center;
  color: #ffffff;
}

.title {
  color: rgb(255, 255, 255);
  letter-spacing: 0;
  line-height: 1.375;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.tag {
  font-weight: 300;
  font-size: 0.75rem;
  display: block;
  color: white;
}

.action {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: none;
  outline: none;
  color: rgb(255 255 255);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.75rem 1.5rem;
  background-color: rgb(33 150 243);
  border-radius: 0.5rem;
}
