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

html {
    min-width: 600px;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px;
}

header {
    background-color: #2c3e50;
    background-image: linear-gradient(#2c3e50, #4a6988, #2c3e50);
    color: #fff;
    padding: 60px 0;
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    font-weight: 600;
}

header p {
    font-size: 1.2em;
    font-weight: 400;
}

nav {
    background-color: #34495e;
    padding: 10px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #2980b9;
}

section {
    padding: 40px 0;
    text-align: center;
}

section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.project, .job {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.project h3, .job h3 {
    font-size: 1.8em;
    margin-bottom: 0px;
    color: #2980b9;
}

.project h4,h5{
    font-weight: bold;
}

.project p, pre, .job p {
    font-size: 1em;
    color: #555;
    margin-bottom: 10px;
}

.project a img {
    width: 50px;
    height: 50px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2980b9;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #3498db;
}

.skills-list {
    list-style: none;
    font-size: 1.1em;
}

.skills-list li {
    margin-bottom: 10px;
}

#contact a {
    font-size: 3em;;
}

footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer p {
    font-size: 0.9em;
}
