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

body {
    height: 100vh;
background: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("img/background.apresentation.jpg") no-repeat center / cover;
    padding: 50px 5%;
}

.container{
    position: relative;
    height: 100%;
    background: rgb(255, 255, 255, .1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    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%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.anime{
    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: #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 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 50px 5% 0;
    color: #fff;
    animation-delay: 1.5s;
}

.home-detail h1{
    font-size: 32px;
    line-height: 1;
    color: #fff;
}

.home-detail h2{
    font-size: 20px;
    color: #fff;
}

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

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

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

.home-detail .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-detail .social-icons a:hover{
    background: #fff;
    box-shadow: 0 0 10px  #fff;
    color: black;
}

.about-img .img-box{
    position: relative;
    width: 28vw;
    height: 28vw;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 20px #fff;
    overflow: hidden;
}

.about-img .img-box img{
    position: absolute;
    top: 20px;
    display: block;
    width: 100%;
    object-fit: cover;
}


@media screen and (max-width: 992px){
    .container{
        padding: 0px;
    }
}