*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
    scroll-behavior:smooth;
}

body{
    background:#0f0f0f;
    color:white;
}

header{
    position:fixed;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:rgba(0,0,0,0.8);
    backdrop-filter:blur(10px);
}

.logo{
    font-size:30px;
    font-weight:bold;
    color:cyan;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:20px;
    transition:.3s;
}

nav a:hover{
    color:cyan;
}

.hero{
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

.hero h1{
    font-size:60px;
    margin-bottom:15px;
}

.hero p{
    font-size:22px;
    color:#ccc;
    margin-bottom:25px;
}

button{
    padding:12px 30px;
    border:none;
    border-radius:30px;
    background:cyan;
    color:black;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    transform:scale(1.1);
}

.section{
    padding:100px 10%;
    text-align:center;
}

.cards{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
    margin-top:30px;
}

.card{
    width:280px;
    padding:25px;
    background:#1b1b1b;
    border:1px solid cyan;
    border-radius:15px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 20px cyan;
}

.contact input,
.contact textarea{
    width:100%;
    max-width:500px;
    padding:12px;
    margin:10px 0;
    border:none;
    border-radius:10px;
}

footer{
    text-align:center;
    padding:20px;
    background:black;
}

#typing{
    color:cyan;
}