body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: white;
}

header {
    background-color: #1e1e1e;
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 3em;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #00aaff;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff6600;
}

#home {
    text-align: center;
    margin-top: 50px;
}

#home h2 {
    font-size: 2.5em;
    animation: fadeIn 2s ease;
}

#home p {
    font-size: 1.2em;
    margin-top: 20px;
    animation: fadeIn 3s ease;
}

.btn {
    background-color: #00aaff;
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #ff6600;
}

#portfolio {
    margin-top: 50px;
    text-align: center;
}

.portfolio-gallery img {
    width: 45%;
    margin: 10px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.portfolio-gallery img:hover {
    transform: scale(1.1);
}

.notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #00aaff;
    padding: 15px;
    color: white;
    border-radius: 5px;
    font-size: 1.2em;
    opacity: 1;
    transition: opacity 0.5s ease;
}

#contact {
    margin-top: 50px;
    text-align: center;
    padding: 30px;
    background-color: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeIn 2s ease;
}

#contact h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #00aaff;
}

#contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#contact input, #contact textarea {
    background-color: #2a2a2a;
    border: 1px solid #444;
    padding: 12px 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
    font-size: 1.1em;
    color: white;
    transition: border-color 0.3s ease;
}

#contact input:focus, #contact textarea:focus {
    border-color: #00aaff;
    outline: none;
}

#contact button {
    background-color: #00aaff;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contact button:hover {
    background-color: #ff6600;
}

#contact p {
    font-size: 1.1em;
    color: #00aaff;
    margin-top: 20px;
}

.hidden {
    display: none;
}

footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    background-color: #1e1e1e;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
