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

.container {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: radial-gradient(circle, #222, #111);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.profile-picture {
    margin-bottom: 20px;
}

.profile-picture img {
    width: 100px; /* Adjust the size as needed */
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ff6f00; /* Orange border */
    box-shadow: 0 0 10px rgba(255, 111, 0, 0.7); /* Glowing effect */
}

h1 {
    color: #ff6f00; /* Vibrant orange */
    margin-bottom: 15px;
    font-size: 2.5rem;
    text-shadow: 0 0 10px rgba(255, 111, 0, 0.7), 0 0 20px rgba(255, 111, 0, 0.5);
    animation: bounceIn 1s;
}

p {
    color: #ddd;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

button {
    background-color: #ff6f00; /* Vibrant orange */
    border: none;
    color: #fff;
    padding: 12px 25px;
    font-size: 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-shadow: 0 0 5px rgba(255, 111, 0, 0.8);
    box-shadow: 0 0 15px rgba(255, 111, 0, 0.8); /* Glowing effect */
    animation: fadeInUp 1s;
}

button:hover {
    background-color: #e65c00;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 111, 0, 1); /* Enhanced glow on hover */
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}