body {
    background-color: #000;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    max-width: 960px;
    margin: 20px auto;
    padding: 0 15px; 
    line-height: 1.5;
}

h1, h2, h3 {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

img {
    width: 200px;
    height: auto;
}

a {
    color: #1e90ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
    text-decoration: underline;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

nav, footer {
    margin-bottom: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
}

button {
    background-color: #1e90ff;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover, .contact-button:hover {
    background-color: #222;
    color: #0ff;
    border-color: #0ff;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #222;
    color: #fff;
}

hr {
    border: 0;
    border-top: 1px solid #756565;
    margin: 10px 0;
}

.project-card, .project2-card {
    background-color: #1c1c1c;
    border: 1px solid #1e90ff;
    border-radius: 8px;
    padding: 15px;
    flex: 1;
}

.projects2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.projects {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
}

.code-icon {
    font-family: monospace;
}

.link a:hover {
    color: #fff;
    text-decoration: underline;
}