/* main.css */
/* VARIABLES */
:root {
	--soft-text: #555;
	--muted-text: #777;
}

/* ELEMENTS */
body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #f2f2f2;
  padding: 20px;
}

p {
  margin: 8px 0;
}

img {
  max-width: 300px;
  border-radius: 12px;
  margin-top: 20px;
  transition: transform 0.2s ease;
}
img:hover {
  transform: scale(1.05);
}

/* #id */

/* CLASSES */
.container {
  max-width: 800px;
  margin: 20px auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

.memory {
  margin-top: 40px;
  font-size: 0.9em;
  color: var(--soft-text);
}

.quote {
  font-style: italic;
  color: var(--soft-text);
}
