* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    overflow-x: hidden;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2b2e83; 
    padding: 10px 20px;
    color: white;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.container {
    padding: 2em;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    animation: slideDown 1.5s forwards 0.3s;
}

.profile-picture {
    width: 300px; 
    height: 300px; 
    margin: 1em auto;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1.5s forwards 0.5s;
}

.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1, h2 {
    color: #6c63ff;
}

p {
    line-height: 1.6;
    margin-bottom: 1em;
}

ul {
    list-style-type: disc;
    padding-left: 1.5em;
    text-align: left;
}

li {
    margin-bottom: 0.5em;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer {
    background-color: #2b2e83;
    color: white;
    text-align: center;
    padding: 20px;
    animation: slideDown 1.5s forwards 1s;
}


