body {
    margin: 0;
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: left;
    min-height: 100vh;
    background-color: #f7d5f1;
    flex-direction: column;
    font-family: "M PLUS Rounded 1c", sans-serif;
}

.m-plus-rounded-1c-regular {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

.container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    min-height: auto;
    padding: 1rem 10rem;
}

.personal-pic {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.headshot-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-icons {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icons a {
    color: #333;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: #ff98cb;
}

.projects-section {
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 0.5rem;
}

.project-tab {
    display: flex;
    background-color: #ffa7cd;
    padding: 0.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    width: 100%;
    max-width: 800px;
    flex-direction: row;
    align-items: center;
}

.project-pic{
    width: 200px;
    height: 100px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
}

.project-content{
    padding: 1rem 1rem;
}

.copyright {
    text-align: center;
    padding: 0 0;
    margin-top: 3rem;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #e0e0e0;
}

.awards-list{
    background-color:  #ffa7cd;
    padding: 1rem;
    border-radius: 2rem;
    max-width: 800px;
}

.project-link-section{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    max-width: 800px;
}

.project-link.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 0; /* Adds space between buttons */
    background-color:  #ffa7cd; /* Button background color */
    color: #000000; /* Text color */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners */
    font-size: 16px; /* Font size */
    text-align: center;
    transition: background-color 0.3s ease;
}

.project-link.button:hover {
    background-color: #ffa9ce; /* Darker blue on hover */
}