/* Global Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
}

header {
    background: url('batman-background.jpg') no-repeat center center/cover;
    height: 100vh;
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
}

.logo img {
    height: 50px;
}

nav ul {
    list-style-type: none;
}

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

nav ul li a {
    text-decoration: none;
    color: #00bfff;
    font-weight: bold;
}

.hero h1 {
    font-size: 50px;
    color: #00bfff;
    text-shadow: 3px 3px #000;
}

.hero p {
    font-size: 24px;
    margin-bottom: 20px;
}

.btn {
    background-color: #00bfff;
    padding: 10px 20px;
    text-decoration: none;
    color: #0a0a0a;
    font-weight: bold;
    border-radius: 5px;
}

section {
    padding: 50px;
    text-align: center;
}

#about {
    background-color: #101010;
}

h2 {
    color: #00bfff;
    margin-bottom: 20px;
}

.project-grid {
    display: flex;
    justify-content: space-around;
}

.project {
    background-color: #151515;
    padding: 20px;
    width: 30%;
    border-radius: 10px;
    border: 1px solid #00bfff;
}

.project h3 {
    color: #00bfff;
    margin-bottom: 10px;
}

footer {
    background-color: #0a0a0a;
    padding: 30px;
}

.socials {
    list-style-type: none;
    padding: 0;
}

.socials li {
    display: inline;
    margin: 0 10px;
}

.socials img {
    height: 40px;
}
