html,
body {
  height: 100vh;
  width: 100vw;
  margin: 0;
}

body {
  background: linear-gradient(rgba(145, 139, 47, 0.75), rgba(88, 0, 0, 0.85)),
    url('../assets/images/background.jpg') no-repeat center center;
  background-size: 120vw auto;
  font-family: 'Rubik', sans-serif;
}

h1 {
  font-size: 20px;
  margin: 0;
}

.title {
  color: #000;
}

.blue {
  color: blue;
}

.name {
  font-size: 22px;
}

.root {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card {
  background-color: #efefef;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.25);
  width: 400px;
  height: 220px;
  padding: 10px;
  border-radius: 10px;
}

.card-header {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-header>img {
  width: 20px;
  height: auto;
  margin-right: 10px;
}

.card-content {
  display: flex;
}

.card-img {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 15px;
}

.card-img>img {
  width: 80%;
  border-radius: 999px;
}

.card-text {
  width: 70%;
  margin-top: 20px;
  padding-left: 20px;

}

.card-text>p {
  margin: 0 0 10px 0;
}

.author {
  color: #ffF;
}