body {
    background-color: #0d0221;
    color: #00ffff;
    font-family: 'Monotype Corsiva', cursive;
    margin: 0;
    padding: 0;
    text-align: center;
}

h1, h2 {
    font-family: 'Press Start 2P', cursive;
    color: #ff00ff;
    text-shadow: 0 0 5px #ff00ff;
}

.profile-photo img {
    border: 4px solid #00ffff;
    border-radius: 50%;
    margin-top: 50px;
    box-shadow: 0 0 15px #00ffff;
    width: 300px;
    height: 300px;
    object-fit: cover;
}

.about-text {
    max-width: 600px;
    margin: 20px auto;
    padding: 0 20px;
}

.card-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.card {
    border: 4px solid #ff00ff;
    padding: 30px;
    width: 250px;
    transition: 0.3s;
    background-color: #1a053d;
    box-shadow: 0 0 15px #ff00ff;
    font-family: 'Monotype Corsiva', cursive;
}

.card:hover {
    background-color: #2a0a5d;
    box-shadow: 0 0 25px #ff00ff;
}

.card-link {
    text-decoration: none;
    color: inherit;
}

.social-list {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-list a {
    color: #00ffff;
    text-decoration: none;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
}

.social-list a:hover {
    color: #ffffff;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: #00ffff;
    text-decoration: none;
    font-family: 'Press Start 2P', cursive;
    margin-top: 40px;
    border: 2px solid #00ffff;
    transition: 0.3s;
    font-size: 0.8rem;
}

.button:hover {
    background-color: #00ffff;
    color: #0d0221;
    box-shadow: 0 0 15px #00ffff;
}
