/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    zoom: 97%;
}

html, body {
    height: 100%; /* Ensures the body takes full height */
}

body {
   
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f0f4f8;

    
}

header {
    background-color: #33475b;
    color: white;
    text-align: center;
    padding: 1rem;
}

header figure {
    margin-bottom: 1rem;
}

header nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 1rem;
}

header nav ul li {
    margin: 0 15px;
    font-size: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #00bcd4;
}

h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #33475b;
}

/* Main content */
.main-content {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    flex-grow: 1; /* Ensures content area expands to push footer down */
}

.sidebar {
    flex: 1;
    max-width: 300px;
    padding: 1rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-right: 2rem;
}

.description p {
    font-size: 20px; /* Slightly larger for better readability */
    line-height: 1.6; /* Increased line height for comfortable spacing */
    margin-bottom: 15px; /* Adds space between each paragraph */
    color: #333; /* Darker color for contrast and readability */
    font-family: "Helvetica", sans-serif; /* A clean and professional font */
  }


.profile-pic {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.personal-info {
    list-style: none;
    font-size: 1.1rem;
}

.personal-info a {
    color: #00bcd4;
    text-decoration: none;
}

.personal-info a:hover {
    text-decoration: underline;
}

.about {
    flex: 2;
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about img.cornell-logo {
    width: 100px;
    float: right;
    margin: 1rem;
}

.about h2 {
    font-size: 1.8rem;
    color: #33475b;
    margin-bottom: 1rem;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.download-btn {
    display: inline-block;
    margin: 5px;
    padding: 15px 30px;
    font-size: 1.2em;
    color: white;
    background-color: #054c97;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .download-btn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
  }





/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    background-color: #33475b;
    color: white;
    font-size: 0.9rem;
    margin-top: auto; /* This pushes the footer to the bottom */
}

/* Media Queries */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
        padding: 0;
    }

    .sidebar {
        margin: 0 0 2rem 0;
    }
}
