*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins",sans-serifa;
}

body{
    height: 100vh;
    background: url("download.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;
}

.about{
     display:flex ;
    align-items:center ;
    height: 100%;
    gap: 50px;
    padding: 50px 5% 0;
    color: #fff;
}

.about-details h1{
     font-size: 32px;
    line-height: 1;
}

.about-details h2{
    font-size: 28px;
}

.about-details p{
     margin: 10px 0 20px;
}

.about-details p{
    margin: 10px 0 20px;
}

.btn {
    display: inline-block;
    padding: 5px 5px;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 20px;
    box-shadow: 0 0 10px #fff;
    color: #333;
    text-decoration: none;
    font-weight: 200;
    transition: .5s;
}

.btn:hover {
    background: transparent;
    box-shadow: none;
    color: #fff;
}

.about-image .image-box{
    position: relative;
    width: 30vw;
    height: 30vw;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 20px #fff;
    overflow: hidden;
}

.about-image .image-box image{
    position:leftside;
    top: 30px;
    display: block;
    width: 100%;
    object-fit: cover;
}