/* Author: Breiona Bankhead */
/* External Style Sheet for Personal Page */

/* 1. Body Styling */
body {
  background-color: #d4f5d4; /* light green */
  color: #333;
  font-family: "Cursive", sans-serif;
  margin: 0;
  padding: 20px;
  text-align: center;
  position: relative;
}

/* 2. Headings */
h1 {
  font-size: 3em;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #6b8e23;
}

/* 3. Paragraphs */
p {
  font-size: 1.2em;
  line-height: 1.6em;
  margin-bottom: 15px;
  padding: 10px;
  border: 2px solid #a3c9a8;
  border-radius: 12px;
  background-color: #f0fff0;
}

/* 4. Links */
a {
  color: #ff69b4;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

a:hover {
  color: white;
  background-color: #ff69b4;
  padding: 5px;
  border-radius: 6px;
}

/* 5. Lists */
ul {
  list-style-type: heart;
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
  padding: 5px;
  border: 1px solid #ccc; /* thin solid border */
  border-radius: 6px;
}

/* 6. Table Styling */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  border: 1px solid #90ee90;
  padding: 10px;
  text-align: center;
}

th {
  background-color: #f8c8dc;
  font-weight: bold;
}

/* 7. Marked Text */
mark {
  background-color: yellow;
  padding: 2px 4px;
  border-radius: 3px;
}

/* 8. Small Text */
small {
  font-style: italic;
  color: #555;
}

/* 9. Beyoncé Image Styling */
.beyonce-pic {
  width: 60px; /*smaller image */
  align-items: center;
  height: auto;
  border: 2px solid #ffb6c1;
  border-radius: 10px;
  box-shadow: 0 0 6px #ffb6c1;
}
  