body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: large;
    background-color: #1a1b26;
    margin: 0;
    padding: 0;
}

.profile-card {
    position: relative;
    max-width: 400px;
    margin: 100px auto;
    background: #1b192b;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(7, 7, 7, 1);
    text-align: center;
    color: #bb9af7;
    transition: filter 0.5s ease, transform 0.4s ease;
}

.profile-card:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.9);
}

.banner {
    background-image: url('tokyo.png');
    background-size: cover;
    background-position: center;
    padding: 50px;
    font-weight: bold;
    border-radius: 10px 10px 0 0;
    margin: -20px -20px 20px -20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: -50px;
    border: 2px solid #202020;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.social-icon:hover {
    transform: scale(1.1);
}

.code-block {
    background-color: #2f3136;
    color: #dcddde;
    border-left: 4px solid #7289da;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    font-family: 'Courier New', Courier, monospace;
    font-size: medium;
}

.code-block pre {
    margin: 0;
    white-space: pre-wrap;
}
