*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins",sans-serifa;
}

body{
    height: 100vh;
    background: url("images\ \(2\).jpg") no-repeat center / cover;
    padding: 50px 5%;
}

.container{
    position: relative;
    height: 100%;
    background: rgba(255,255,255, .1);
    border: 2px solid ,rgba(255,255,255, .1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    transform: scale(0);
    animation: zoom-in 2s ease forwards;
    
}


@keyframes zoom-in {
    100%{
        transform: scale(1);
    }
}
header{
    position: absolute;
    top: 0;
    width: 100%;
    padding:25px 5%;
    display:flex ;
    justify-content: space-between;
    align-items:center ;
    z-index: 100 ;
}

.animated{
    transform: translateY(30px);
    opacity: 0;
    animation: slide-in 2s ease forwards;
    animation-delay:  2s ;
}
@keyframes slide-in {
    100%{
         transform: translateY(0);
         opacity: 2;
    }
}
.logo{
    font-size: 25px;
    color: #fff;
    text-decoration: none;
    font-weight:600 ;
}

.navbar a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    border-bottom: 2px solid transparent; 
    transition: .5s;
}

.navbar a:hover ,
.navbar a.active {
    border-color: #fff;
}

.projects{
     display:flex ;
    align-items:center ;
    height: 70%;
    gap: 20px;
    padding: 10px  2% 0;
    color: #fff;
}

.projects-details h1{
     font-size: 32px;
    line-height: 1;
}

.projects-details h2{
    font-size: 28px;
}

.Projects-grid{
    width:90%;
    margin: auto;
    display: flex;
    gap: 25px;
}
.projects-card{
    background:transparent;
    padding: 5px;
    border-radius: 5px;
}
.Projects-card h3{
    margin: 5px 0 8px;
    color:#010508;
}

.projects-card p{
    color:#555;
    font-size: 14px;
}
.btn {
    display: inline-block;
    padding: 5px 5px;
    background: rgb(0, 4, 5);
    border:transparent;
    border-radius: 20px;
    box-shadow: 0 0 10px #fff;
    color:white;
    text-decoration: none;
    font-weight: 200;
    transition: .5s;
}

.btn:hover {
    background: transparent;
    box-shadow: none;
    color: #fff;
}
