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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #1A1A1D;
    color: #F0F0F0;
}

/* Header */
header {
    color: #00D4FF;
    background-color: #121212;
    padding: 1rem;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 1.5rem;
}

header ul {
    list-style: none;
    display: flex;
}

header ul li {
    margin-left: 1rem;
}

header ul li a {
    color: inherit;
    text-decoration: none;
}
section{
    text-align: center;
    padding: 5rem 0;
}
section h2{
    color: #F0F0F0;
}
.link{
    color: #00D4FF;
    margin: 5px;
}
#projects div{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}
#projects div div{
    background-color: #121212;
    border: 1px solid #F0F0F0;
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}
#projects div div:hover{
    transform: translateY(-5px);
}
#projects h3 {
    margin-top: 0;
    font-size: 1.2em;
}
#projects p {
    font-size: 0.95em;
    line-height: 1.4em;
}
/* Links styling */
#projects a.link {
    margin-left: 5px;
    color: #00D4FF;
    text-decoration: none;
}
#projects a.link:hover {
    text-decoration: underline;
}
#qr div{
    margin: auto;
    background-color: #F0F0F0;
    border-radius: 25px;
    width: 150px;
    color: #121212;
}
#qr div div{
    text-align: center;
    padding: 15px 10px;
    margin: auto;
}
#socialmedia div a{
    margin: 10px;
}

/* Contact Form */
form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-top: 0.5rem;
}

form input, form textarea {
    padding: 0.5rem;
    margin-top: 0.2rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    margin-top: 1rem;
    padding: 0.7rem;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #121212;
    color: #00D4FF;
}
