body {
    font-family: 'Orbitron', sans-serif;
    background: #311d3f;
    color: #ff4d6b;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.6;
}

header {
    text-align: center;
    padding: 50px 0;
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.1);
    color: #ff9a8b;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    margin: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

nav a {
    margin: 0 15px;
    font-weight: bold;
    text-decoration: none;
    color: #ff9a8b;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

nav a:hover {
    transform: scale(1.1);
    color: #b04161;
}

section {
    text-align: justify;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    margin: 20px;
    color: #ff4d6b;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

section h2::before {
    content: "⚛️ ";
    font-size: 1.5em;
    margin-right: 5px;
    color: #ff9a8b;
}

footer {
    text-align: center;
    font-size: 0.9em;
    margin-top: auto;
    padding: 20px;
    color: #b36f94;
}

footer p::before {
    content: "👓 ";
    font-size: 1.2em;
    margin-right: 5px;
    color: #e74c3c;
}

.hero {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    color: #ff4d6b;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.2em;
    margin-top: 20px;
}

.project {
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #ff9a8b;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.project:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.social-icons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.social-icons a {
    margin: 0 10px;
    text-decoration: none;
    color: #ff4d6b;
    transition: transform 0.3s ease-in-out;
    border: 2px solid #ff4d6b;
    border-radius: 50%;
    padding: 10px;
    display: flex;
    align-items: center;
}

.social-icons a img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.social-icons a:hover {
    transform: scale(1.2);
    background-color: #ff4d6b;
    color: #311d3f;
}

#contact a {
    color: #b36f94;
}

/* Responsive styles */
@media screen and (max-width: 600px) {
    nav {
        flex-direction: column;
        align-items: center;
    }

    nav a {
        margin: 10px 0;
    }

    header h1 {
        font-size: 2em;
    }

    .hero {
        padding: 30px 10px;
    }

    section {
        padding: 15px;
    }

    footer {
        font-size: 0.8em;
    }
}

@media screen and (max-width: 400px) {
    nav a {
        font-size: 0.9em;
    }
}

.law-section {
    margin-bottom: 30px;
}

#about img {
    float: left;
    margin-right: 20px;
}

#about p {
    text-align: justify; 
}