/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}
/* Page background + font */
body {
  background: linear-gradient(to right, #e0f7fa, #e1bee7);
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  color: #333;
}

/* Main title */
h1 {
  text-align: center;
  text-decoration: underline;
  color: #4a148c;
  transition: transform 0.3s;
}

/* Hover effect for headings */
h1:hover {
  transform: scale(1.1);
}

/* Subheadings */
h2 {
  color: #6a1b9a;
  border-bottom: 2px solid #6a1b9a;
}

/* Paragraph styling */
p {
  font-size: 16px;
  margin: 8px 0;
}

/* Add hover effect to paragraphs */
p:hover {
  color: #00796b;
  cursor: pointer;
}

/* Image styling */
img {
  display: block;
  margin: 20px auto;
  width: 200px;
  border-radius: 50%;
  border: 4px solid #6a1b9a;
  transition: transform 0.3s;
}

/* Image hover effect */
img:hover {
  transform: rotate(5deg) scale(1.1);
}