@import url('https://fonts.googleapis.com/css2?family=Libertinus+Mono&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Libertinus Mono", monospace;
}

body{
    background: #1f242d;
}

a {
    color: #fff;
    text-decoration: none;

}

.navbar {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 25px 9%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;

}

.navbar .logo {
    font-size: 30px;
    font-weight: 700;

}

.navbar ul {
    display: flex;
}

.navbar ul li {  
    list-style: none;
    margin-left: 35px;
}


            
.navbar ul li a {
    font-size: 20px;
    font-weight: 500;
    transition: .5s;

}

.navbar ul li:hover a,
.navbar ul li.active a{
    color: #f03dba;
}

.home {
    display: flex;
    align-items: center;
    gap: 50px;
    height: 100vh;
    padding: 60px 9% 0;
    color: #fff;
    visibility: hidden;
    opacity: 0;
    animation: show-content 2s linear forwards;
}
@keyframes show-content {
    100%{
        visibility: visible;
        opacity: 1;
    }
    
}
.home-info h1 {
    font-size: 55px;

}

.home-info h2 {
     font-size: 32px;
     margin-top: -10px;

}

.home-info p {
    font-size: 16px;
    margin: 10px 0 25px;
}

.home-info .btn-sci {
    display: flex;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 10px 30px;
    background: #f03dba;
    border: 2px solid #f03dba;
    border-radius: 40px;
    box-shadow: 0 0 10px #f03dba;
    font-size: 16px;
    color: #1f242d;
    font-weight: 600;
    transition: .5s;

}


.btn:hover {
    background: transparent;
    color: #f03dba ;
    box-shadow: none;
}

                    
.home-info .btn-sci .sci a {
    display: inline-flex;
    padding: 8px;
    border: 2px solid #f03dba;
    border-radius: 50%;
    font-size: 20px;
    color: #f03dba;
    margin: 0 8px;
    transition: .5s;
}

.home-info .btn-sci .sci a:hover {
    background: #f03dba;
    color: #1f242d;
    box-shadow: 0 0 10px #f03dba;
}

.home-img .img-box {
    width: 32vw;
    height: 32vw;
    border-radius: 50%;
    background-color: whitesmoke;
    padding: 5px;
    
}

.home-img .img-box .img-item {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgb(207, 133, 165);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

                    
.home-img .img-box .img-item img {
    position: absolute;
    display: block;
    width: 85%;
    object-fit: cover;
    height: auto;
    object-fit: block;
}
