*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
nav {
    background: #2D3748;
    display: flex;
    height: 80px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px 0 100px;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    z-index: 1000; 
}
ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 20px; 
}

ul a {
    color: #fff;
    text-decoration: none;
    padding: 8px 12px; 
    transition: all 0.3s ease;
}

ul a:hover {
    color: #f44336;
    background: rgba(255, 255, 255, 0.1);
}


body{
    font-family: 'Poppins', sans-serif;
    background-color: #f0f0f0;
    color: #333;
}
h1{
    font-size: 2.5rem;
    margin-bottom: 20px;
}
main{
    max-width: 100%;
    height: auto;
    margin: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 1200px;
    margin: 100px auto 0;  
}
.about-me{
    background-color: rgb(6, 82, 82);
    color: white;
    font-weight: bolder;
    text-align: center;
    height: 500px;
    justify-content: center;
    align-content: center;
    padding: 40px 20px;
    height: auto; 

}
@keyframes fadeIn {
    to { opacity: 1; }
}
h2{
    font-size: 2rem;
    margin-bottom: 15px;
}
#my-skills{
    text-align: center;
    font-size: 2rem;

}


h3{
    font-size: 1.5rem;
    margin-bottom: 10px;
}
p{
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}
ul{
    list-style-type: none;
    padding-left: 20px;
    margin-bottom: 15px;
}
.skills{
    gap: 10px;
    margin-bottom: 15px;
    height: auto; 
    padding: 40px 20px
}
.skills h1{
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    color: brown;
}
.html, .css, .js, .photoshop, .canva, .illustrator, .c, .branding, .git {
    background-color: #2D3748;
    padding: 10px;
    width: 100px;
    text-align: center;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    justify-content: center;
    justify-content: space-around;
}
.web, .graphic-design {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 50px;
    color: #fff;

}
.journey{
    text-align: center;
    position: relative; 
    z-index: 1;
}
.drive{
    background-color: #2D3748;
    color: white;

    padding: 10px;
    text-align: center;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    align-content: center;
}
.cards {
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
    gap: 20px; 
}
.all-div{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
    gap: 30px; 
    padding: 20px;
    max-width: 1200px; 
    margin: 0 auto; 
}
.cards h1, .headings {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    color: brown;
    display: block;
}
.card-content {
    width: 300px;
    border: 1px solid #ddd; 
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); 
    transition: all 0.3s ease; 
}

.card-content:hover {
    transform: translateY(-10px); 
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); 
}

.card-content p {
    color: #666; 
    text-align: left; 
    padding: 0 0 20px 0; 
}
.card-content a{
    text-decoration: none;
    font-size: 1.2rem;
    margin-top: 10px;
    display: inline-block;
    transition: color 0.3s ease;
}
.download{
    background-color: #2D3748;
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: bold;
    align-content: center;
    display: block;
    margin: 20px auto 0;
}
.social-media{
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
}
.social-media a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}
.social-media a:hover {
    color: #f44336;
}

footer {
        background-color: #2D3748;
        color: #fff;
        text-align: center;
        padding: 20px 0;
        position: relative;
        bottom: 0;
        width: 100%;
        font-size: 0.9rem;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }

    footer a {
        color: #f44336;
        text-decoration: none;
        margin: 0 10px;
        transition: color 0.3s ease;
    }

    footer a:hover {
        color: #fff;
    }
    @media (max-width: 768px) {
        nav {
            padding: 0 20px;
            height: 60px;
        }
        ul {
            gap: 10px;
        }
    }
    