body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f8f9fb;
    color: #222;
}

.container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    text-align: center;
    max-width: 700px;
}

h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.role {
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
}

.project {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

.project h2 {
    margin-bottom: 10px;
}

.project p {
    color: #555;
}

.buttons {
    margin-top: 20px;
}

.buttons a {
    text-decoration: none;
    padding: 12px 20px;
    margin: 5px;
    border-radius: 6px;
    background-color: #0077ff;
    color: white;
    font-weight: bold;
}

.buttons a:hover {
    background-color: #005dd1;
}