body {
  background-color: rgb(255, 194, 195);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
h1, h2{
  font-family: sans-serif;
  margin-top: 40px;
  color: #33001f;
}
p, h4 {
  margin: 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
  color: #333;
}

p img{
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
a {
  text-decoration: none;
  color: #33001f;
  font-weight: bold;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

a:hover {
  color: #8c2c4a;
  border-bottom: 2px solid#8c2c4a;
}
