
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;

}

body {
    height: 100vh;
    background: url(./Assets/space.jpg) no-repeat center / cover;
    padding: 5% 10%;
}

.container {
    position: relative;
    height: 100%;
    background-color: rgba(255, 255, 255, .1);
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 30px;
    /* backdrop-filter: blur(30px); */
    transform: scale(0);
    animation: zoom-in 1s ease forwards;
}

@keyframes zoom-in {
    100% {
        transform: scale(1);
    }
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 5%;
    /* background-color: blueviolet; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.animated {
    transform: translateY(30px);
    opacity: 0;
    animation: slide-in 1s ease forwards;
    animation-delay: 1s;
}

@keyframes slide-in {
    100% {
        transform:  translateY(0);
        opacity: 1;
    }
}

.logo {
    font-size:25px;
    color: white;
    text-decoration: none;
    font-weight: 600;
}


.home {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 50px;
    padding: 50px 5% 0;
    color: white;
    animation-delay: 1.5s;
}

.home-detail h1 {
    font-size: 55px;
    line-height: 1;
}

.home-detail h2 {
    font-size: 32px;

}

.home-detail p {
    margin: 10px 0 20px;
}

.home-detail .download-social {
    display: flex;
    align-items: center;

}

.home-detail .social-icons {
    margin-left: 20px;
}

.home-detail .social-icons a {
    display: inline-flex;
    padding: 8px;
    border: 2px solid white;
    border-radius: 50%;
    font-size: 20px;
    color: white;
    text-decoration: none;
    margin: 0 8px;
    transition: .5s;
}

.home-detail .social-icons a:hover{
    background: white;
    box-shadow: 0 0 10px white;
    color: gray;
}

.home-img .img-box {
    position: relative;
    width: 20vw;
    height: 20vw;
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 0 20px white;
    background: url(./Assets/me.jpeg) no-repeat center / cover;
    
}

@media  (max-width: 1025px){
    
    .home {
        flex-direction: column;
        justify-content: space-evenly;
    }

    .home-img {
        order: 1;
        margin-top: 2rem;

    }
    .home-detail {
        order: 2;
        margin-bottom: 2rem;
    }
    .home-detail h1 {
        font-size: 2.1rem;
        margin-bottom: .4rem;
        text-align: center;
    }
    .home-detail h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .home-detail p {
        text-align: center;
    }
}

@media (max-width: 376px) {
    .home-detail h1 {
        font-size: 1.5rem;
        margin-bottom: .4rem;
        text-align: center;
    }

    .home-detail h2 {
        font-size: 1.2rem;
        text-align: center;
    }

    .home-detail p {
        font-size: .9rem;
    }

    .home-img .img-box {
        width: 28vw;
        height: 28vw;
    }
}

@media  (min-width: 376px) and (max-width:450px) {
    .home-img .img-box {
        width: 40vw;
        height: 40vw;
    }
}
