body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #081B29;
    background-image: url("image.jpg");
    background-position: center center;  /* Image centered horizontally and vertically */
    background-repeat: no-repeat;  /* Image displayed only once */
    background-size: cover;  /* Image scaled to cover the entire body */
}

header h1 {
   
    text-align: center;
    margin-bottom: 20px;
    animation: slideRight 1s ease forwards;
}

/* defines the dimensions of the picture */
.profile-picture {
    width: 600px;
    height: 400px;
    border-radius: 50%; /* Make it circular */
    margin: 0 auto 20px;
    display: block;
    overflow: hidden;
    float: center; /* Float left to align with other content */
    animation: zoomIn 1s ease forwards, floatImage 4s ease-in-out infinite, glowPulse 3.8s ease-in-out infinite;
    animation-delay: 0s, 1s;
    
   
}


/* orients the picture to center the face */
.profile-picture img {
    width: 100%;
    height: auto;
    
}

p {
    float: left;
    margin-right: 20px;
    line-height: 25px;
    padding: 8px 2px;
    color: white;
    font-family: "Roboto", sans-serif; /* Specify the font family */
  }

ul {
    list-style-type:none;
    margin: 0;
    padding: 4;
    overflow: hidden;
    
}

li {
    float: right;
    margin-right: 60px; /* Adjust the margin-right to increase spacing between items */
    font-family: "Roboto", sans-serif; /* Specify the font family */
    font-size: 16px; /* Adjust the font size */
    font-family: "Roboto", sans-serif; /* Specify the font family */
    margin-bottom: 15px;
}

li a {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 20px 60px;
    text-decoration: none;
    font-family: "Roboto", sans-serif; /* Specify the font family */
    font-size: 20px; /* Adjust the font size */
    transition: .3s;
    opacity: 0;
    animation: slideTop .5s ease forwards;
    animation-delay: calc(.2s * var(--i));
    
}

li a:hover:not(.active) {
    background-color: #30f81d;
}

.intro {
    position: relative;
    width: 100;
    height: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 70px 10% 0;
}

h3 {
    color: white;
    font-size: 35px;
    font-weight: 700;
    animation: slideBottom 1s ease forwards;
    
    
    
}
h4 {
    color: white;
    font-size: 20px;
    animation: slideRight 1s ease forwards;
}



h1 {
    color: white;
    font-size: 56px;
    font-weight: 700;
    animation: slideRight 1s ease forwards;
}

.intro-content h3 span {
    color: #30f81d;
}

#job-title {
    animation: slideTop .5s ease forwards;
  }

  #list {
    float: left;
    font-size: 10px;
    color: rgb(241, 242, 241);
    font-family: "Roboto", sans-serif; /* Specify the font family */
    display: flex;
    flex-direction: column;
 
  }

  /* Put all the animation keyframes below here! */
@keyframes floatImage {
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-24px);
    }
    100%{
        transform: translateY(0);
    }
    
}

@keyframes slideRight {
    0%{
        transform: translateX(-100px);
        opacity: 0;
    }

    100%{
        transform: translateX(0);
        opacity: 1;
    }
    
}

@keyframes zoomIn
{
    0%{
        transform: scale(0);
        opacity: 0;
    }

    %100{
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideTop {
    0%{
        transform: translateY(100px);
        opacity: 0;
    }

    100%{
        transform: translateY(0);
        opacity: 1;
    }
    
}

@keyframes slideBottom {
    0%{
        transform: translateY(-100px);
        opacity: 0;
    }

    100%{
        transform: translateY(0);
        opacity: 1;
    }
    
}

@keyframes glowPulse {
    0% {
        filter: drop-shadow(0 0 10px rgba(48, 248, 29, 0.1)); /* Initial glow */
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(48, 248, 29, 0.9)); /* Max glow */
    }
    100% {
        filter: drop-shadow(0 0 10px rgba(48, 248, 29, 0.1)); /* Back to initial glow */
    }
}

 /* Put all the animation keyframes above here! */
 