body{

    color: white;
    background-image: url("backgrounds/lain_mirror.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.navbar {
    display:  flex;
    align-items: center;
    
    height: 80px;
    width: 100%;
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 2rem;
    max-width: 1600px;
}

.navbar-logo {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    cursor: pointer;
    align-items: left;
    display: flex;
    
    
}

.navbar-container .navbar-menu {
    display: flex;
    text-align: right;
    gap: 1.5rem;
    list-style: none;
    position: sticky;
    
}

.navbar-container .navbar-menu li a {
    text-decoration: none;
    color: white;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 3px 20px;
    border-radius: 20px;
    border:20px solid transparent;
    transition: all 0.7s ease;
    white-space: nowrap;
}

.navbar-container .navbar-menu li a:hover {
    color: #3d1818;
    background: rgba(227, 102, 102, 0.8);
    border: 2px solid white;
}



.bounce-text {
    color: white;
    position: top;
    transform: translate (-50%, 50%);
    left: 50%;
    top: 50%;
    line-height: 0;
    display: flex;
    gap: 5px;
    font-size: 3rem;
    font-weight: bold;
    justify-content: center;
}
.bounce-text span {
    display: inline-block;
    animation: bounce 5.0s infinite ease-in-out;
}
.bounce-text span:nth-child(1) {
    animation-delay: 0s;
}
.bounce-text span:nth-child(2) {
    animation-delay: 0.2s;
}
.bounce-text span:nth-child(3) {
    animation-delay: 0.4s;
}
.bounce-text span:nth-child(4) {
    animation-delay: 0.6s;
}
.bounce-text span:nth-child(5) {
    animation-delay: 0.8s;
}
.bounce-text span:nth-child(6) {
    animation-delay: 1.0s;
}
.bounce-text span:nth-child(7) {
    animation-delay: 1.2s;
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

nav a:hover,
nav a.active{
    color: #b74b4b;
    
}



section{
    min-height: 50vh;
    padding: 1rem 9% 5rem;
}

.home{
    display: flex;
    margin-top: 5%;
    justify-content: center;
    align-items: center;
    gap: 8rem;
}

.home .home-content h1{
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}



.home-content h3{
    font-size: 4rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.home-content p{
    font-size: 1.6rem;
}

.home-img{
    border-radius: 50%;
}

.home-img img{
    position: relative;
    width: 30vw;
    border-radius: 5%;
    box-shadow: 0 0 25px solid #b74b4b;
    transition: 0.2s linear;
}

.home-img img:hover{
    font-size: 1.8rem;
    font-weight: 500;
}

.social-icons a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background-color: transparent;
    border: 0.2rem solid #b74b4b;
    font-size: 2rem;
    border-radius: 50%;
    margin: 1rem 1.5rem 3rem 0;
    transition: 0.3s ease;
    color: #b74b4b;
}

.social-icons a:hover{
    color: black;
    transform: scale(1.3) translateY(-5px);
    background-color: #b74b4b;
    box-shadow: 0  0 25px #b74b4b;
}

.btn{
    display: inline-block;
    padding: 1rem 2.8rem;
    background-color: black;
    border-radius: 4rem;
    font-size: 1.6rem;
    color: #b74b4b;
    letter-spacing: 0.3rem;
    font-weight: 600;
    border: 2px solid #b74b4b;
    transition: 0.3s ease;
    cursor: pointer;
}



.typewriter{
    font-size: 34px;
    font-weight: 600;
    min-width: 280px;
}

.typewriter span{
    position: relative;
}

.typewriter-text{
    font-size: 4rem;
    color: #b74b4b;
}

.typewriter label{
    font-size: 3.5rem;
}

 
footer {
    text-align: center;
    p {color: white;}
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
}

