:root {
    --primary-color: #3498db;
    --background-color: #0d1117;
    --font-size: 16px;
    --heading-font-size: 24px;
}
/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and general styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--background-color);
    color: #f0f0f0f0;     
    padding: 20px;

}

h1,
h3 {
    font-family: 'Helvetica', sans-serif;
}

/* Center align h1 and h3 */
h1,
h3 {
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Styling for the connect section */
p {
    font-size: 1rem;
    color: var(--primary-color);
    margin: 15px 0;
}

p a {
    margin: 0 10px;
    transition: transform 0.3s ease;
}

p a:hover {
    transform: scale(1.1);
}

/* Languages and tools section */
h3:nth-of-type(2) {
    margin-top: 40px;
}

p img {
    margin: 10px;
    transition: transform 0.3s ease;
}

p img:hover {
    transform: scale(1.1);
}

/* Left-aligned content */
p[align="left"] {
    text-align: left;
}

/* Add spacing between social icons */
p[align="left"] a {
    margin-right: 15px;
}
