* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #08101d;
    color: #e6edf3;
}

header {
    background: #161b22;
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #ff5858;
    font-size: 1.5em;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #f3e6e6;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff5858;
}

.menu-toggle {
    display: none;
    color: #f3f3f3;
    font-size: 1.8em;
    cursor: pointer;
}

section {
    padding: 100px 20px 60px;
    text-align: center;
}

h2 {
    color: #ff5858;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff5858;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #eb1f1f;
}

.home-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/bg-raindrops.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(8px) brightness(0.6);
    z-index: -1;
    right: 0;
    bottom: 0;
    
}

.home-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.skills-section ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.skills-section li {
    background-color: #161b22;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #ff5858;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.project-card {
    background-color: #161b22;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #30363d;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    outline: none;
    background: #21262d;
    color: #e6edf3;
}

button {
    cursor: pointer;
}

footer {
    background: #161b22;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    font-size: 0.9em;
    color: #8b949e;
}