:root {
  --primary: #f4385b;
  --secondary: #fbf4ec;
  font-family: "Roboto";
}

body {
  background-color: var(--primary);
  display: flex;
  justify-content: center;
}

a {
  font-family: monospace;
  color: var(--primary);
}

a:hover {
  font-weight: bold;
}

.content {
  background-color: var(--secondary);

  display: flex;
  flex-direction: column;

  width: min(80vw, 700px);
  margin-top: 60px;
  padding: 16px;
  border-radius: 9px;
}

.title-card {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 32px;
}

.profile {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.title-card p {
  font-size: 18px;
}

.title-card img {
  width: 200px;
  height: 200px;
  border-radius: 4px;
}

@media screen and (max-width: 600px) {
  .profile {
    flex-direction: column;
  }
}
