.btn {
  display: inline-block;   /* ← THIS is the key */
  margin-bottom: 50px;
  padding: 10px 20px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  color: #555555;
  background-color: #ffffff;
  border: 2px solid #555555;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  text-decoration: none;
}

.btn:hover {
  background-color: #ffffff;
  border: 2px solid #555555;
transform: scale(1.05);

}

.btn:active {
  transform: scale(1.05);
}

.btn::after {
  content: "Home";
}
  