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

body {
    background-color: #1d1f22;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.card {
    background-color: #2a2e35;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
}

header {
    margin-bottom: 20px;
}

header h1 {
    font-size: 2em;
    color: #fff;
    margin-bottom: 10px;
    text-align: center;
}

header h2 {
    font-size: 1.1em;
    color: #A8A8A8;
    text-align: center;
}

.social-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    color: #A8A8A8;
    font-size: 2em;
    text-decoration: none;
    margin-top: 10px;
    margin-bottom: 10px;
}

.social-icon:hover {
    color: #e4e4e4;
    transform: scale(1.1);
}

p {
    color: #D1D1D1;
    font-size: 1em;
    margin-bottom: 20px;
    text-align: left;
}

a.link-color {
    color: #A8A8A8;
    text-decoration: none;
}

a.link-color:hover {
    color: #e4e4e4;
}

.projects h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.projects ul {
    list-style: none;
    margin-bottom: 20px;
}

.projects li {
    font-size: 1em;
}

.project-link {
    color: #A8A8A8;
    text-decoration: none;
}

.project-link:hover {
    color: #e4e4e4;
}
