.home{
    width:90%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
    
}

@media (max-width: 850px) {
    .home{
        width: 100%;
    }
}

/* @media (max-width: 850px) and (max-height:786px) {
    .home{
        min-height: 100vh;
          /* position: fixed; 
          overflow-y: auto;
          
    }
} */

.home__Title{
    color: #FFF8DC;
    font-size: 3vw;
}

@media (max-width: 850px) and (min-width: 420px) {
    .home__Title{
        font-size: 1.7rem;
    }
}

@media (max-width: 419px) {
    .home__Title{
        font-size: 1.5rem;
        width: 70%;
        text-align: center;
        margin-top: 5rem;
    }
}

.home__name{
    text-align: center;
    color: #FFF8DC;
}

.home__Text{
    width: 30%;
    text-align: center;
    color: #FFF8DC;
    font-size: 1.5vw;
    line-height: 2rem;
}

@media (max-width: 850px)  {
    .home__Text{
        font-size: 1rem;
    }
}

.home__Image{
    
    background-color: black;
    max-inline-size: 100%;
    width: 15%;
    border-radius: 50%;
    aspect-ratio: 1;
    padding: 0.5vh;
    border: 2px #ff7f50 solid;
    transition: width 1s;
}

.home__Image:hover{
      width: 20%;
       
}

@media (max-width: 850px)  {
    .home__Image{
        width: 11rem;
    }
}


