/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  text-align: center;
  padding: 20px;
}

/* Navbar Styling */
.navbar {
  display: flex;
  justify-content: center;
  background-color: #3b312f;
  padding: 10px;
  margin: 100px;
  border-radius: 25px;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-size: 1rem;
}

.navbar a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  margin-top: 50px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #333;
}

.hero p {
  font-size: 1.2rem;
  margin: 10px 0;
}

.filler {
  font-size: 1rem;
  color: #777;
}
main p {
  margin-bottom: 20px; /* Adjust spacing as needed */
}

.profile-image {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--secondary);
}

.profile-section {
    float: none; /* Reset any floats */
    text-align: center; /* Center inline content */
    margin: 0 auto; /* Center the section container itself */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px; /* Optional spacing */
}


/* For Fun Page Styles */
.forfun-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

/* Variables - you can add these to your existing CSS variables if you have them */
.forfun-page {
    --primary: #1a365d;
    --primary-light: #2d5a9c;
    --secondary: #64748b;
    --dark: #1e293b;
    --light: #f8fafc;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.forfun-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.forfun-page .hero {
    background: var(--gradient);
    color: white;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.forfun-page .hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--light);
    transform: skewY(-3deg);
}

.forfun-page .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.forfun-page .hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
}


.forfun-page .content-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.forfun-page .content-card:hover {
    transform: translateY(-5px);
}

.forfun-page .section-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.forfun-page .button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.forfun-page .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.forfun-page .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .forfun-page .hero h1 {
        font-size: 2.5rem;
    }
    
    
}
.quote-container {
  max-width: 800px; /* Adjust this value as needed */
  margin: 0 auto; /* Centers the container */
  padding: 20px; /* Adds some padding around the quotes */
  text-align: left; /* Ensures the text aligns to the left within the container */
}

#quote-list {
  list-style-type: none; /* Removes default bullet points */
  padding: 0;
}

#quote-list li {
  margin-bottom: 35px; /* Adds spacing between quotes */
  line-height: 1.6; /* Improves readability */
  font-size: 1.0rem; /* Adjusts font size for better visibility */
  color: #333; /* Makes text color consistent */
}
