body {
    margin: 0;
    padding: 0;
    background-color: #0d1117;
    color: #c9d1d9;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    max-width: 450px;
    width: 90%;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #00bfff;
    margin-bottom: 20px;
}

h1 {
    margin-bottom: 5px;
}

p {
    color: #8b949e;
    margin-bottom: 30px;
}

.links a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #161b22;
    color: #00bfff;
    text-decoration: none;
    padding: 16px;
    margin: 12px 0;
    border: 1px solid #30363d;
    border-radius: 10px;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.2s;
}

.links a i {
    margin-right: 10px;
    font-size: 20px;
}

.links a:hover {
    background-color: #238636;
    color: #ffffff;
    transform: scale(1.03);
}
