/* styles.css */

/* Basic reset and styling */
* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: Arial, sans-serif;
        color: #333;
        background-color: #f8f9fa; /* Soft gray background for contrast */
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        padding: 1rem; /* Small padding for mobile */
    }
    
    /* Centering and layout */
    main {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 600px; /* Max width to avoid excessive stretching on large screens */
        text-align: center;
    }
    
    .profile {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    /* Image styling */
    .profile img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        object-fit: cover;
        animation: spin 6s linear infinite; /* Spinning animation */
    }
    
    /* Typography */
    h1 {
        font-size: 2rem;
        font-weight: 700;
        color: #222;
    }
    
    h2 {
        font-size: 1.2rem;
        font-weight: 400;
        color: #555;
    }
    
    p {
        font-size: 1rem;
        color: #666;
    }
    
    /* Animation */
    @keyframes spin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }
    
    /* Responsive adjustments */
    @media (max-width: 480px) {
        h1 {
            font-size: 1.8rem;
        }
        h2 {
            font-size: 1.1rem;
        }
        p {
            font-size: 0.9rem;
        }
    }
    