* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #333333;
}

.main-container {
  background-color: #78c1f3;
  width: 100%;
  height: 100%;

  display: flex;
  padding: 50px;
  flex-direction: column;
}

.author {
  background-color: white;
  width: 100%;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: flex;
  height: 15rem;
  margin-bottom: 15px;
}

.image img {
  width: 130px;
  height: 180px;
  border-radius: 5px;
}

.info {
  margin-left: 50px;
  margin-top: 20px;
}

.info p {
  margin-top: 10px;
}
