        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: #0d1117;
            color: #c9d1d9;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow-x: hidden;
        }

        header {
            width: 100%;
            padding: 20px;
            text-align: center;
            background: #161b22;
        }

        header img {
            width: 50px;
        }

        nav {
            margin-top: 10px;
        }

        nav ul {
            list-style: none;
            padding: 0;
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        nav ul li {
            display: inline;
        }

        nav ul li a {
            text-decoration: none;
            color: #58a6ff;
            font-weight: bold;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #ff7b72;
        }

        .intro {
            text-align: center;
            padding: 20px;
        }

        .intro h2 {
            color: #58a6ff;
        }

        .skills {
            padding: 20px;
            text-align: center;
        }

        .skills h2 {
            color: #58a6ff;
        }

        .skills-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }

        .skill {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: #21262d;
            border: 1px solid #30363d;
            border-radius: 8px;
            padding: 15px;
            width: 120px;
        }

        .skill img {
            width: 50px;
            height: 50px;
        }

        .skill p {
            margin-top: 10px;
            color: #c9d1d9;
        }

        .projects {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            padding: 20px;
        }

        .project {
            background: #21262d;
            border: 1px solid #30363d;
            border-radius: 8px;
            padding: 20px;
            max-width: 300px;
            text-align: center;
        }

        .project img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 4px;
        }

        .project button {
            margin-top: 10px;
            padding: 10px 20px;
            background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgba(151,41,247,1) 0%, rgba(24,22,39,1) 90% );            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-transform: uppercase;
            box-shadow: -5px 2px 10px 0px #6420AA;
            transition: box-shadow 0.3s;
        }
        .project button:hover{
            color: #15F5BA;
            transition: 0.3s;
        }

        .project button:hover {
            box-shadow: -5px 2px 10px 0px #15F5BA;
        }

        .socials {
            display: flex;
            justify-content: center;
            gap: 20px;
            padding: 20px;
        }

        .socials a {
            color: #58a6ff;
            text-decoration: none;
            font-size: 24px;
            transition: color 0.3s;
        }

        .socials a:hover {
            color: #ff7b72;
        }

        .books {
            padding: 20px;
            text-align: center;
        }

        .books h2 {
            color: #58a6ff;
        }

        .books-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }

        .book {
            background: #21262d;
            border: 1px solid #30363d;
            border-radius: 8px;
            padding: 20px;
            max-width: 300px;
            text-align: center;
        }

        .book img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 4px;
        }

        .book h3 {
            color: #c9d1d9;
            margin-top: 10px;
        }

        .book .actions {
            margin-top: 10px;
        }

        .book .actions a {
            margin: 5px;
            display: inline-block;
            padding: 10px 15px;
            background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgba(151,41,247,1) 0%, rgba(24,22,39,1) 90% );            border: none;
            font-size: 0.9em;
            transition: box-shadow 0.3s;
        }

        .book .actions a:hover {
            box-shadow: 0 0 10px #15F5BA;
        }

        footer {
            margin-top: 20px;
            padding: 10px;
            text-align: center;
            font-size: 0.9em;
            color: #8b949e;
        }