section {

    width: 100%;
    height: 98vh;
    border: 0 solid black;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: center; 
    gap: 20px;

    }
    
.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    }

#img-login,
#img-heart {
    max-width: 340px;
    }
    
#img-bar {
    max-width: 120px;
}

.hero__img {
    display: none;
}

.title {
    color: black;
    text-transform: uppercase;
    font-size: 8rem;
    margin: 0;
    font-weight: 600;
    }

.text-color-change {
    transition: color 1.3s cubic-bezier(0.4, 0, 0.2, 1) .2s;
    }

.hero__bg {
    width: 75%;
    display: flex;
    }

#propic {
    width: 400px;
    object-fit: cover;
    }


.hero__name_job {
    width: 75%;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    }

.hero__name {
    font-size: 1.8rem;
    font-weight: bold;
    }
    
.hero__jobtitle {
    font-size: 1.9rem;
    font-weight: 800;
    color: white;
    -webkit-text-stroke: 0.5px black;
    }
    
.hero__name,
.hero__jobtitle {
     text-align: right;
    }
    

/* menu */

.menu__container {
    width: 150px;
    height: 95%;
    position: fixed;
    top: 2.5%;
    left: 1.5%;
    border: 1px solid black; 
    border-radius: 16px;
    z-index: 100;
    
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    
    display: none;
    }

.menu__item  {
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

.menu__item:hover {
  transform: scale(1.05) translateX(10px);
    }

