/* style.css */
body {
  background-color: #121212; /* Dark background */
  color: #eee; /* Light text */
  font-family: 'Comic Sans MS', 'Arial', sans-serif; /* Wonky font */
  /* line-height: 1.6; */
  margin: 0;
  /* padding: 20px; */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  /* animation: jiggle 1s infinite; */
}

@keyframes jiggle {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

h1 {
  font-size: 3em;
  color: #ff69b4; /* Hot Pink */
  text-shadow: 2px 2px 4px #000000; /* Shadow */
  font-family: 'Impact', 'Arial', sans-serif; /* Another wonky font */
}

img {
  width: 12em;
  height: auto;
  border: 5px solid #4682b4; /* Steel Blue border */
  border-radius: 50%; /* Circular */
  transform: rotate(15deg); /* Slight rotation */
  animation: wiggle 2s infinite; /* Wiggle animation */
}

@keyframes wiggle {
  0% { transform: rotate(15deg); }
  50% { transform: rotate(-10deg); }
  100% { transform: rotate(15deg); }
}

a {
  color: #90ee90; /* Light green */
  text-decoration: none;
  border-bottom: 1px dotted #f0f0f0;
}

a:hover {
  color: #add8e6; /* Light blue */
  border-bottom: 1px solid #add8e6;
}

.container {
  max-width: 60vw;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.2); /* Slightly transparent background */
  border-radius: 10px;
}

/* Extra quirky elements */
p {
  font-style: italic;
  text-shadow: 1px 1px 2px #000000;
}

.title {
  margin-bottom: 20px;
  text-align: center;
}

.service-table {
  width: 50%; /* Adjust as needed */
  margin: 0 auto;
  border-collapse: collapse;
}

.header-cell, .data-cell {
  padding: 8px;
  border: 1px solid #ddd;
  text-align: center;
}

.data-row:nth-child(even) {
  background-color: #f9f9f9;
}

.review-section {
  display: flex;
  overflow-x: auto; /* Enable horizontal scrolling */
  white-space: nowrap; /* Prevent items from wrapping to the next line */
  padding-left: 10px; /* Add some padding for the scrollbar */
  padding-right: 10px;
  padding-top: 20px;
}

.review-item {
  width: 50%; /* Adjust width as needed */
  margin-right: 1em; /* Add spacing between items */
  margin-left: 1em; /* Add spacing between items */
  text-align: center;
}

.review-item img {
  width: 6em;
  height: 6em;
  border-radius: 50%; /* Make the profile picture circular */
  object-fit: cover; /* Ensure the image fills the circle */
  margin-bottom: 5px;
}

.review-item p {
  font-size: 14px;
  margin: 0;
}
