@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  background: url('images/computer.jpg'), rgba(0, 0, 0, 0.6);
  background-blend-mode: multiply;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
}

img {
  max-width: 100%;
}

.card {
  box-shadow: 0 5px 15px rgba(238, 190, 34, 0.9);
  border-radius: 10px;
  overflow: hidden;
  width: 650px;
}

.card-header {
  height: 300px;
}

.card-header img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.card-content {
  background-color: #fff;
  padding: 30px;
}

.card-content {
  background-color: #fff;
  padding: 30px;
  color: rgba(238, 190, 34, 0.9);
  font-weight: bold;
}

.postload {
  background-color: rgba(0, 0, 0, 0.4);
}

.card-title {
  height: 20px;
  margin: 0;
}

.card-excerpt {
  color: rgba(238, 190, 34, 0.9);
  margin: 10px 0;
}

.info > div {
  margin-bottom: 7px;
}

.lighten {
  color: rgba(255, 239, 185, 0.9);
}

.animated-bg {
  background-image: linear-gradient(
    to right,
    #f6f7f8 0%,
    #edeef1 10%,
    #f6f7f8 20%,
    #f6f7f8 100%
  );
  background-size: 200% 100%;
  animation: bgPos 1s linear infinite;
}

.animated-bg-text {
  border-radius: 50px;
  display: inline-block;
  margin: 0;
  height: 10px;
  width: 100%;
}

@keyframes bgPos {
  0% {
    background-position: 50% 0;
  }

  100% {
    background-position: -150% 0;
  }
}

@media (max-width: 400px) {
  .card {
    width: 300px;
  }
}
