.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 1;
    top: 0px;
    /* add a 50px top margin */
    background-color: black;
    width: 100%;
}

.navbar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 22px;
}

/* .navbar a:hover {
    background-color: #ddd;
    color: black;
} */

.navbar .dropdown {
    float: left;
    overflow: hidden;
}

.navbar .dropdown .dropbtn {
    font-size: 22px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.navbar a:hover,
.dropdown:hover .dropbtn {
    background-color: #08032c;
    color: rgb(255, 255, 255);

    border-radius: 20px;
}

.navbar .dropdown-content {
    display: none;
    position: absolute;
    z-index: 1;
    background-color: #08032c15;
    border-radius: 20px;
}

.navbar .dropdown-content a {
    float: none;
    color: rgb(255, 255, 255);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.navbar .dropdown:hover .dropdown-content {
    display: block;
}

section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #fbfbfcbd;
    color: rgb(0, 0, 0);
    padding: 20px;
    margin: 20px;
    border-radius: 20px;
    max-width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    margin: 0;
    padding: 0;
}
.wrapper {
    text-align: center;
}

h2  {
    font-size: 25px;
    color: #08032c;
    word-wrap: break-word;
    max-width: 500px;
    align-content: center;
}

/* h1 {
    font-size: 40px;
    color: #08032c;
    word-wrap: break-word;
    max-width: 500px;
} */

i {
    color: #08032c;
    word-wrap: break-word;
    max-width: 500px;
}


p {
    text-align: justify;
    text-justify: inter-word;
    /* increase text size */
    font-size: 16px;
    word-wrap: break-word;
    max-width: 500px;
}