/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
    padding: 20px;
}

/* Skills Box Styling */
.skills-box {
    position: sticky;
    padding: 10px 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    width: 200px;
    text-align: center;
}

.top-skills {
    top: 10px;
    margin-bottom: 20px;
}

.bottom-skills {
    bottom: 10px;
    margin-top: 20px;
}

/* Main Content Styling */
.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #222;
    text-align: center;
}

h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.8rem;
    color: #444;
}

p {
    margin-bottom: 20px;
    color: #555;
}

ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #555;
}

ul li {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .skills-box {
        width: 150px;
        font-size: 0.9rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}
