body {
    background-color: rgb(229, 189, 195);
    font-weight:400;
}

nav .container-fluid {
    position:fixed;
    top:0;  
    width:100%;
    background-color: #edece2;   
    font-size: 1.5rem;
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    font-style: normal;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    
}

.navbar-brand a{
    text-decoration: none;
    color:grey;
    font-size: 2rem;
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    font-style: normal;

}

.nav-link{
    color:grey;
    font-weight : 700;
}

.nav-link:hover{
    color: rgb(229, 189, 195);
}

.aboutPageDiv{
    display:flex;
    justify-content: center;
    margin : 10%;
    
}

.aboutPageDiv img{
    margin-left:1rem;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block
}

.aboutPageDiv div{
    margin : 1rem;
    border-radius: 50px;
    width: 500px;
    height: 500px;
}

.aboutPageDiv div h1,p{
    margin-right:2rem;
}

.aboutPageDiv div  h1{
    margin-top: 8rem;
    
}

.aboutPageDiv div p{
    font-size: larger;
    margin-top : 4rem;
    align-content: left;
    padding-right:50px;
    color: rgb(93, 93, 93);
}

.aboutPageDiv div .resumeButton{
    margin-left:0px;
    align-items: left
}

.resumeButton button{
    cursor : default;
    margin-top:5px;
    font-weight: 600;
}

.resumeButton svg {
    cursor:pointer;
    margin: 5px;
    color: rgb(93, 93, 93);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
    pointer-events: none; 
}

.resumeButton:hover svg {
    opacity: 1;
    transform: translateX(0); 
    pointer-events: auto; 
}


.resumeButton:hover svg:nth-of-type(1) {
    transition-delay: 0.1s;
}

.resumeButton:hover svg:nth-of-type(2) {
    transition-delay: 0.2s;
}

.highlight {
    font-size: 1.5em;
    font-weight: 600;
}

.highlight {
    font-size: 1.5em;
    font-weight: 600;
    display: inline-block;
    position: relative;
}

.highlight::before {
    content: 'Software Developer';
    animation: wordRotate 6s infinite;
}

@keyframes wordRotate {
    0%, 30% {
        content: 'Software Developer';
        opacity: 1;
    }
    33%, 36% {
        opacity: 0;
    }
    37%, 63% {
        content: 'Artist';
        opacity: 1;
    }
    66%, 69% {
        opacity: 0;
    }
    70%, 96% {
        content: 'Photographer';
        opacity: 1;
    }
    97%, 100% {
        opacity: 0;
    }
}


