*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins",sans-serifa;
}

body{
    height: 100vh;
    background: url("./image3.avif") 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;
}

.home{
    display:flex ;
    align-items:center ;
    height: 100%;
    gap: 50px;
    padding: 50px 5% 0;
    color: #fff;
}
.home-details{
    width: 90%;
    max-width: 600px;
    padding: 20px;
    box-sizing: border-box;
}

.home-details h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 10px

}

.home-details  h2{
    font-size: 32px;
}

.home-details p {
    margin: 10px 0 30px;
}

.home-details.download-social {
    display: flex;
    align-items: center;
}
    
.btn {
    display: inline-block;
    padding: 10px 30px;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 40px;
    box-shadow: 0 0 10px #fff;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: .5s;
}

.btn:hover {
    background: transparent;
    box-shadow: none;
    color: #fff;
}

.home-details.social-icons {
    margin-left: 20px;
}
.home-details .social-icons a {
    display: inline-flex;
    padding: 8px;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    margin: 0 8px;
    transition: .5s;
}

.home-details .social-icons a:hover {
    background: #fff;
    box-shadow: 0 0 10px #fff;
    color: #333;
}


.home-image .image-box {
    position: relative;
    width: 28vw;
    height: 28vw;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 20px #fff;
    overflow: hidden;
}

.home-image .image-box image {
    position: absolute;
    top: 30px;
    display: block;
    width: 100%;
    object-fit: cover;
}
body{
font-family: Arial;
background: url("./image3.avif") no-repeat center / cover;
color:white;
display:grid;
justify-content:center;
align-items:center;
height:100vh;
}

.container{
background: transparent;
padding:30px;
border-radius:10px;
text-align:center;
}

input{
display:block;
margin:10px auto;
padding:10px;
width:200px;
}

button{
padding:10px 20px;
background:#38bdf8;
border:none;
cursor:pointer;
}