
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
        scroll-behavior: smooth;

    }

    header{
        background-color: #f0f0f0;
        width: 100%;
        position: fixed;
        z-index: 999;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 200px;
    }

    .logo{ 
        text-decoration: none;
        color: #021F3E;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 1.8em;
    }

    .navbar a{
        text-decoration: none;
        color: #021F3E;
        font-size: 1.1em;
        font-weight: 500;
        padding-left: 30px;
    }
    .navbar a:hover{
        color: #601cfc;
    }

    section{
        padding: 100px 200px;

    }
    .main{
        width: 100%;
        min-height: 100vh;
        display: flex;
        align-items: center;
        background: url(images/steen1.jpg) no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }
    .main h2 {
        color: #fff;
        font-size: 1.4em;
        font-weight: 500;
    }
    .main h2 span {
        display: inline-block;
        color: rgb(58, 170, 244);
        font-size: 3em;
        font-weight: 600;
        margin-top: 10px;
    }
    .main h3 {
        color: #fff;
        font-size: 2em;
        font-weight: 700;
        letter-spacing: 1px;
        margin-top: 10px;
        margin-bottom: 30px;
    }
    .main-btn {
        color: #fff;
        background-color: rgb(58, 170, 244);
        text-decoration: none;
        font-size: 1.1em;
        font-weight: 600;
        display: inline-block;
        padding: 0.9375em 2.1875em;
        letter-spacing: 1px;
        border-radius: 15px;
        margin-bottom: 40px;
        transition: 0.7s ease;
    }
    .main-btn:hover {
        background-color: #0a49f6;
        transform: scale(1.1);
    }
    .social_icons a {
        text-decoration: none;
        color: #fff;
        font-size: 1.7em;
        margin-right: 30px;
    }

    .title {
        display: flex;
        justify-content: center;
        color: rgb(58, 170, 244);;
        font-size: 2.2em;
        font-weight: 800;
        margin-bottom: 30px;
    }
    .content {
        display: flex;
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .card {
        background-color: #fff;
        width: 21.25em;
        box-shadow: 0 5px 25px rgba(1 1 1 / 15%);
        border-radius: 10px;
        padding: 5px;
        margin: 25px;
        transition: 0.7s ease;
    }
    .card:hover {
        transform: scale(1.1);
    }
    .icon {
        font-size: 8em;
        color: rgb(58, 170, 244);;
        text-align: center;
    }
    .info {
        text-align: center;
    }
    .info h3 {
        color: rgb(58, 170, 244);;
        font-size: 1.2em;
        font-weight: 700;
        margin: 10px;

    }
    .projects {
        background-color: #021F3E;
    }
    .projects .content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .project_card {
    background-color: #fff;
    border: 1px solid #fff;
    min-height: 14em;
    width: 23em;
    overflow: hidden;
    border-radius: 10px;
    margin: 20px;
    transition: 0.7s ease;
    
    }

    .project_card:hover {
        transform: scale(1.1);
    }

    .project_card:hover .project_image {
        opacity: 0.9;
    }

    .project_image img{
        width: 100%;

    }

    .project_info {
        padding: 1em;
    }

    .project_category {
        font-size: 0.8em;
        color: #000;
        
    }

    .project_title {
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    font-weight: 800;
    margin-top: 10px;

    }

    .cards_Contact .icon {
        font-size: 4.5em;
    }
    .cards_Contact .info h3 {
        color: #000;
    }
    .cards_Contact .info p {
        font-size: 1.5em;

    }
    .footer {
        background-color: #000016;
        color: #fff;
        padding: 2em;
        display: flex;
        justify-content: space-between;
        
    }

    .footer_title {
        font-size: 1.3em;
        font-weight: 600px;
    }

    .footer_title span {
        color: #3a6cf4;
    }

    .footer .social_icons a{
        color: #fff;
        font-size: 1.4em;
        padding: 0 12px 0 0;
    }


@media (max-width:1023px) {
    header {
        padding: 12px 20px;
    }
    .navbar a{
        padding-left: 10px;
    }
    .title {
        font-size: 1.8em;
    }
    section{
        padding: 80px 20px;
    }
    .main_content h2{
        font-size: 1em;
    }
    .main_content h3{
        font-size: 1.6em;
    }
    .cpntent {
        flex-direction: column;
        align-items: center;

    }
}
@media (max-width:641px) {
    body {
        font-size: 12px;
    }
    .main_content h2{
        font-size: 0.8em;
    }
    .main_content h3{
        font-size: 1.4em;
    }
}
@media (max-width:300px) {
    body {
        font-size: 10px;
    }
}

.music {
    width: 90%;
    max-width: 900px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background : #fff;
    color : #555;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.music:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.track {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.track img {
    width: 70px;
    margin-right: 30px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.track img:hover {
    transform: scale(1.2) rotate(20deg);
}

.track div {
    flex: 1;
}


