/* Reset all default browser spacing and set box sizing for consistency */
*{
margin:0;
    padding: 0;
    box-sizing: border-box;
}
/* Base styles for the entire page */
body{
    font-family:Arial,sans-serif; 
    background-color: #f9f9f9;
    text-align: center;
}
/* Optional header styling (not used in your HTML currently) */
header{
    padding-top: 40px;
}
    
/* Card container */
.card {
    background-color: #f9f9f9;
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 12px;
    box-shadow:0 4px 20px rgba(0,0,0,0.1);
}
.skills-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0;
    list-style: none;
    margin-top: 20px;
}
.skills-list li {
    background-color: #0077cc; 
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
    transition: background-color 0.3s;
    cursor: default;
}
.skills-list li:hover {
    transform: scale(1.1);
    background-color: #0056b3;
    color: white; 
}
/* Profile image  */
img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 100px; 
    margin-top: 20px;
    border: none;
    box-shadow: 0 0 6px rgba(0. 0, 0, 0.1);
    overflow: hidden;
    

    /* Make it circular */
}
/* Main heading*/
h1{
    font-size: 2.5em;
}
h2{
    font-size: 1.2em;
    font-weight: 500;
    margin-top: 40px;
    color: #444;
}
/* Paragraph text styling */
p{
    font-size: 1.2em;
    line-height: 1.6;
    margin: 10px 0;
}
/* Link styling */
a{
    color: blue;
    text-decoration: none;
}
/* Link hover styling */
a:hover{
    text-decoration: underline;
}
/* Unordered list styles */
ul{ 
    list-style-type: none;
    padding: 0;
    text-align: center;
}
/* List item spacing */
li{
    margin: 4px 0;
}
/* Button for the color scheme change of background */
button{
    margin-top: 15px;
    padding: 8px 16px;
    border:none ;
    background-color: #333;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}
button:hover{
    background-color: #555;
}
.links {
    text-align: center;
    margin-top: 20px;
}
.Button{
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    background-color: #333;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border-radius: 20px;
cursor: pointer;
.Button:hover{
    background-color: #555;
}
}