header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    position: relative;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    font-family: Times New Roman;
    background-color: #fefefe
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-picture {
    display: flex;
    justify-content: center;
    margin-top: 85px;
}

.profile-picture img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #3b3b3b;
    margin-top: 20px;
}

.role-text {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.nav-bar {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: transparent;
    transition: background-color 0.3s;
    align-items: center;
    margin-bottom: 20px;
}

header:hover .nav-bar {
    opacity: 1;
    pointer-events: auto;
}

.nav-bar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 40px;
    justify-content: center;
    width: 100%;
}

.nav-bar li {
    display: inline;
    margin-top: 10px;
}

.nav-bar a {
    text-decoration: none;
    color: #3b3b3b;
    font-size: 20px;
    padding: 15px;
    font-family: Georgia;
    text-transform: uppercase;
}

.nav-bar a:hover {
    color: #fefefe;
}

.nav-bar:hover {
    background-color: #cbc3e3;
}


.quote-section {
    text-align: center;
    margin: 20px;
    background-image: url('flowers.jpeg');
    background-size: cover;
    background-position: center;
    padding: 40px;
    opacity: 0;
    animation: fadeIn 2s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quote-section h2 {
    font-size: 24px;
    color: #333;
}

.quote-section h3 {
    font-size: 20px;
    color: #665;
}
 
ol {
    padding: 20px;
}

ol li {
    margin-bottom: 20px;
    margin-left: 20px;
    font-size: 17px;
}

h1 {
    margin-left: 15px;
}

h2 {
    margin-left: 15px;
    color: #d98b19;
}

.facts-container {
    margin-top: 20px;
}

footer {
    text-align: center;
    padding: 8px;
    background-color: #cbc3e3;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    font-size: 24px;
    color: #fff;
    background-color: #cbc3e3;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s;
}

.back-to-top:hover {
    background-color: #b19cd7;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

@media (max-width: 768px) {
    .nav-bar ul {
        flex-direction: column;
        background-color: #cbc3e3;
    }

    .container {
        padding: 10px;
    }

    .nav-bar {
        display: none;
        flex-direction: column;
        position: absolute;
        background-color: #cbc3e3;
        top: 60px;
        width: 100%;
        left: 0;
    }

    .nav-bar.show {
        display: flex;
        background-color: #cbc3e3;
    }

    .nav-bar a {
        padding: 15px;
        display: block;
    }

    .profile-picture {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .nav-bar a {
        font-size: 16px;
    }
}

img {
    max-width: 100%;
    height: auto;
}

.hamburger {
    cursor: pointer;
    display: none;
}

.hamburger .line {
    width: 30px;
    height: 3px;
    background-color: #000;
    margin: 5px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
}