        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes slideIn {
            from { transform: translateX(-100px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        @keyframes zoomIn {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        body {
            font-family: 'Yu Mincho', serif;
            background-color: #f9f5e7;
            text-align: center;
            color: #3a3a3a;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            overflow: auto;
        }

        .container {
            width: 80%;
            max-width: 1200px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            animation: fadeIn 1.2s ease-in-out;
        }
        .profile {
            width: 40%;
            text-align: center;
            animation: slideIn 1.5s ease-in-out;
        }
        .profile img {
            width: 230px;
            height: 230px;
            border-radius: 20px;
            object-fit: cover;
            border: 4px solid #3a3a3a;
            animation: zoomIn 1.2s ease-in-out;
        }
        .profile h1 {
            font-size: 26px;
            margin: 15px 0;
            animation: fadeIn 1.5s ease-in-out;
        }
        .profile p {
            font-size: 18px;
            color: #555;
            animation: fadeIn 1.8s ease-in-out;
        }
        .about {
            width: 55%;
            text-align: left;
            animation: fadeIn 2s ease-in-out;
        }
        .about h2 {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 15px;
        }
        .about p {
            font-size: 16px;
            line-height: 1.8;
            color: #3a3a3a;
            animation: fadeIn 2.5s ease-in-out;
        }
        .button {
            display: inline-block;
            padding: 12px 25px;
            margin: 10px;
            border: 2px solid #3a3a3a;
            text-decoration: none;
            color: #3a3a3a;
            font-size: 16px;
            border-radius: 5px;
            transition: 0.3s;
            position: relative;
            overflow: hidden;
        }
        .button::after {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: -100%;
            background: rgba(58, 58, 58, 0.2);
            transition: 0.4s;
        }
        .button:hover::after {
            left: 0;
        }
        .button:hover {
            background-color: #3a3a3a;
            color: white;
            animation: pulse 0.5s ease-in-out;
        }
        .social-icons {
            margin-top: 15px;
        }
        .social-icons a {
            margin: 0 8px;
            font-size: 22px;
            color: #3a3a3a;
            text-decoration: none;
            transition: 0.3s;
            display: inline-block;
        }
        .social-icons a:hover {
            color: #ff4500;
            transform: rotate(10deg) scale(1.2);
        }
        @media (max-width: 768px) {
            body {
                height: auto;
                min-height: 100vh;
                overflow: auto;
            }
            .container {
                flex-direction: column;
                text-align: center;
            }
            .profile, .about {
                width: 100%;
            }
            .about {
                text-align: center;
                margin-top: 20px;
            }
            .buttons {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .button {
                width: 80%;
                text-align: center;
            }
        }
