* {
    margin: 0;
    box-sizing: border-box;
    font-family: poppins;
}

body {
    background: url(./pexels-magda-ehlers-pexels-13246808.jpg) no-repeat center / cover;
    height: 100vh;
    padding: 50px 5%;
}

.container {
    position: relative;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    transform: scale(0);
    animation: zoom-in 1s ease forwards;
}

@keyframes zoom-in {
    100% {
        transform: scale(1);
    }
}

header {
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 15px;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.animated {
    transform: translateY(30px);
    opacity: 0;
    animation: slide 1s ease forwards;

}

@keyframes slide {
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo {
    text-decoration: none;
    font-size: 30px;
    color: white;
    font-weight: 600;
}

.navbar a {
    text-decoration: none;
    color: white;
    font-size: 19px;
    font-weight: 500;
    margin-left: 35px;
    border-bottom: 2px solid transparent;
}

.navbar a:hover,
.navbar a.active {
    border-color: #fff;
    transition: 0.5s;
}

.home {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 50px 5% 0px;
    color: #fff;
}

.home-detail h1 {
    font-size: 50px;
    line-height: 1;
}

.home-detail h2 {
    font-size: 30px;
}

.home-detail p {
    margin: 10px 0px 20px;
}

.home-detail .download-social {
    display: flex;
    align-items: center;
}

.btn {
    padding: 10px 30px;
    display: inline-block;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 0 10px #fff;
    text-decoration: none;
    font-weight: 600;
}

.btn:hover {
    background-color: transparent;
    color: #fff;
    box-shadow: none;
    transition: .1s;
}

.home-detail .social-icons {
    margin-left: 20px;
}

.home-detail .social-icons a {
    padding: 8px;
    display: inline-flex;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    transition: 0.5s;
    text-decoration: none;
}

.home-detail .social-icons a:hover {
    background-color: #fff;
    color: red;
    box-shadow: 0 0 10px #fff;
}

.home-img .img-box {
    border: 2px solid #fff;
    position: relative;
    border-radius: 50%;
    height: 28vh;
    width: 28vh;
    overflow: hidden;
    box-shadow: 0 0 10px #fff;

}

.home-img .img-box img {
    position: absolute;
    top: 0px;
    display: block;
    width: 100%;
    object-fit: cover;
}