body {
    background-color: aliceblue;
    color: black;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}



h1 {
    text-align: center;
    font-size: 2.5em;
}

/* navgation bar*/
nav {
    text-align: center;

}
.navbar ul {
    display: flex;
    justify-content: center;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: sticky;
    top: 0;

    overflow: hidden;
}

ul li {
    border: 2px solid white;
}

li {
    background-color: orange;
    display: inline-block;
}

li a {
    display: block;
    color: white;
    padding: 14px 14px;
    border: 2px white;

}


/*footer*/
footer p a {
    color: white;
}
footer p{
    background-color: rgb(0, 135, 142);
    padding: 5px 5px;
    color: white;
    text-align: center;

}

/* images styles*/

img {
    float: left;
    width:  300px;
    height: 300px;
    object-fit: scale-down;
}

.banner {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.conrainer {
    width: 100%;
    height: auto;
    position: relative;
}

.column {
    display: flex;
    flex: 33.33%;
    padding: 5px;
    margin: auto;
    width: 50%;
    height: 50%;
    align-content: center;
    justify-content: center;
}

.container2 {
    display: flex;
    margin: 0 auto;
    padding: 10px;
}

.container3 {
    display: flex;
    margin: 0 auto;
    padding: 5px;

}

.text {
    margin: 1.5cm;
    display: flex;
}

.text_right {
    display: flex;
    justify-content: left;
}

/* table*/


table {
    background-color: black;
    align-items: center;
}

table tbody tr th {
    background-color: rgb(176, 176, 176);
    text-align: center;
    margin: 1.25cm;
    padding: 5px;
}

table tbody tr td {
    text-align: center;
    background-color: white;
    padding: 5px;

}

