@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');


section{
    width: 100%;
    height: 90vh;
}

.main-container{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    
    position: relative;
}

.main-container .image{
    z-index: -1;
    width: 50%;
}

.main-container .image img{
    max-width: 80%;   /* Never exceed parent width */
    max-height: 600px; /* Limit height if desired */
    width: auto;       /* Let browser handle scaling */
    height: auto;
    justify-content: center;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    
}

.main-container .content{
    color: black;
    width: 40%;
    min-height: 100px;
    
    
}

.content p{
    color: #E0DAB3;
}

.content h1{
    font-size: clamp(1rem, 2rem + 5vw, 3rem);
}

.content h1 span{
    color: #FFF080;
    text-shadow: 0 0 10px #191919;
}

.content .typewriter{
    font-size: clamp(1rem, 1rem + 5vw, 2rem);
    font-weight: 600;
    margin: 10px 0;
    color: #FFF080;
}

.typewriter span{
    color: #424CFF;
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px #191919);
    position: relative;
    transition: 0.3s linear;
}

.content p{
    font-size: clamp(0.4rem, 0.2rem + 9vw, 1rem);
    margin: 10px 0;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-links i{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background-color: #B2AE95;
    border: 0.1rem solid #424CFF;
    border-radius: 50%;
    color: #191919;
    margin: 5px 10px;
    font-size: 1.5rem;
    transition: 0.2s linear;
}

.social-links i:hover{
    scale: 1.3;
    color: #FFFFFF;
    background-color: #424CFF;
    filter: drop-shadow(0 0 10px rgb(25,25,25));
    border: 0.2rem solid #191919
}

.content button{
    display: flex;
    
    margin: 30px;
    background-color: #B2AE95;
    color: #191919;
    border: 0.1rem solid #424CFF;
    outline: none;
    font-size: 100%;
    font-weight: 700;
    border-radius: 5px;
    transition: 0.2s linear;

    justify-content: center;
    align-items: center;

    cursor: pointer;

    width: 150px;
    height: 100px;
    flex: none;
}

.content button:hover{
 scale: 1.1;
 color: #FFFFFF;
 border: 2px solid rgb(25,25, 25);
 background-color: #424CFF;
 font-weight: 700;
 box-shadow: 0 0 40px rgb(25,25, 25);
}

.social-links{
    display: flex;
    justify-content: center;
}

.btn{
    display: flex;
    justify-content: center;
}
.btn button{
    width: 150px;
    height: 100px;
    flex: none;
}

@media (max-width:884px) {
    .main-container{
        display: flex;
        flex-direction: column;
        
        
    }

    .main-container .content{
        width: 80%;
        border-right: 2px solid rgb(25,25,25);
        border-left: 2px solid rgb(25,25,25);
        background: rgba(25,25,25,0.5);
        padding: 1rem;
        background-blend-mode: multiply;
    }

    .social-links i{
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.5rem;
    }

    .main-container .image{
        width: 80%;
        margin-bottom: 0px;
    }
    
}


