body {
    color: #FFFFFF;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    align-items: flex-start;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    display: block;
}

.welcome {
    font-size: x-large;
    font-family: poppins;
    position: fixed;
    right: 40%;
    left: 45%;
    color: rgba(250, 159, 31, 0.82);

}

.container {
    background-color: #111111;
    width: 100vw;
    padding: 20px;
    margin-top: 74px;
    padding-bottom: 200px;
}

.container2 {
    background-color: #ffffff;
    width: 100vw;
    padding: 20px;
    margin-top: 0;
    padding-bottom: 200px;
}

.container3 {
    background-color: #ffffff;
    width: 100vw;
    padding: 20px;
    margin-top: 0;
    padding-bottom: 130px;
}

.welcome-bar {
    background-color: #ffffff;
    color: #000000;
    padding: 10px;
    box-shadow: 0px 5px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;

    justify-content: center;

    position: fixed;
    opacity: 80%;
    width: 100vw;
    left: 0;
    top: 0;
    z-index: 1000;
}

.text-container {
    display: flex;
    flex-direction: column;

    text-align: center;
    margin-left: 10px;

}

h1 {
    margin: 0;
    line-height: 1.2;

}

.orange {
    color: rgb(241, 170, 39);
}

.blue {
    color: #57bdf0;
}

.main-content {
    margin-top: 30px;
    font-size: 1.2em;
    line-height: 1.6;
}

.main-content2 {
    color: #000000;
    margin-top: 30px;
    font-size: 1.2em;
    line-height: 1.6;
}

.logocenter1 {
    margin-top: -12%;
    background-color: #FFFFFF;
    margin-bottom: 5%;
    border-color: #57bdf0;
    border-width: 9px;
    border-style: solid;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 33px 1px#57bdf0;
    -moz-box-shadow: 0px 0px 33px 1px #57bdf0;
}

.logocenter2 {
    margin-top: -12%;
    margin-bottom: 5%;
    border-color: rgb(241, 170, 39);
    border-width: 9px;
    border-style: solid;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 33px 1px rgba(250, 159, 31, 0.82);
    -moz-box-shadow: 0px 0px 33px 1px rgba(250, 159, 31, 0.82);
}

@font-face {
    font-family: 'poppins';
    src: url(Fonts/Poppins/Poppins-Black.ttf);
}

ul {
    font-family: poppins;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

li {
    width: 45%;
    text-align: center;
    margin-bottom: 10px;
}

.whitesub {
    font-family: 'poppins';
    display: flex;
    justify-content: center;
    font-size: x-large;
}

.blacksub {
    color: #000000;
    font-family: 'poppins';
    display: flex;
    justify-content: center;
    font-size: x-large;
}

.welcome-bar h1 {
    margin: 0;
    font-size: 1.5em;
    text-align: center;
    flex-grow: 1;
}

.dropdown-content {
    position: absolute;
    background-color: #ffffff;
    border-radius: 10px;
    top: 100%;
    right: 0;
    margin-right: 1%;
    width: 150px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    z-index: 10;
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.dropdown-content.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.dropdown-content a {
    color: rgb(0, 0, 0);
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #a3a3a3;
    transition: 0.3s;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #111111;
    margin-top: 20px;
}