@import url('https://fonts.googleapis.com/css2?family=Playwrite+US+Modern:wght@100..400&display=swap');

body {
    background-color: #6d0839;
    color: #d0e799;
    font-family: Verdana, sans-serif;
    font-size: 12px;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    margin-top: 50px;
    text-align: center;
    position: relative;
}

header::before {
    content: "";
    background-color: #d0e799;
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
}

h1 {
    font-family: "Playwrite US Modern", cursive;
    font-size: 3em;
    color: #d0e799;
    position: relative;
    display: inline-block;
    letter-spacing: 0.1em;
    animation: colorChange 3s infinite alternate;
    margin-bottom: 20px;
}

@keyframes colorChange {
    0% { color: #d0e799; }
    100% { color: #6d0839; }
}

.profile-pic {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    background-color: #d0e799;
    overflow: hidden;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 20px;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section {
    margin: 20px;
    width: 80%;
    max-width: 1200px;
    text-align: center;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.project {
    background-color: #d0e799;
    margin: 15px 0;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #6d0839;
}

.project img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.project a {
    color: #6d0839;
    text-decoration: none;
    display: block;
    margin: 10px 0;
    font-size: 1.2em;
}

.project a:hover,
.project a:active {
    color: #6d0839;
}

footer {
    background-color: #d0e799;
    color: #6d0839;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

footer a {
    color: #6d0839;
    text-decoration: none;
    font-size: 1.2em;
    display: block;
    margin: 5px 0;
}

.contact-info {
    margin-top: 10px;
}