﻿body
{
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: rgb(8, 94, 123);
    color: #fff;
}
header, main, footer {
    width: auto;
    height: auto;
}
header img {
    width: 100%;
    height: auto;
    opacity: 0.6;
    object-fit: cover;
}
.icon {
    width: 190px; 
    height: 190px; 
    border-radius: 95px;
    opacity: 1;
    position: absolute;
    top: 25px;
    left: 40px;
    animation: rotateAnimation 30s linear infinite;
}
.iconf {
    width: 50px; 
    height: 50px; 
    border-radius: 25px;
    opacity: 0.9;
    animation: rotateAnimation 30s linear infinite;
}
@keyframes rotateAnimation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@media only screen and (min-width: 800px) {
    nav {
        flex-direction: column;
        align-items: center;
        float: none;
    }
}
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: absolute;
    top: 25px;
    right: 40px;
}
nav li {
    float: left;
    font-size: large;
}
nav a {
    color: white;
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 14px 16px;
}
nav a:hover {
    background-color: cornflowerblue;
}
.active, nav a:active {
    background-color: royalblue;
}
.navbtn {
    display: none;
}
header h1 {
    position: absolute;
    top: 30%;
    width: 99%;
    text-align: center;
    font-size: 80px;
}
header h4 {
    text-transform: capitalize;
    position: absolute;
    top: 50%;
    width: 99%;
    text-align: center;
    font-weight: 100;
}
strong { text-decoration: underline; cursor: pointer; }
main {
    margin: 30px;
    padding: 30px;
}
main img {
    width: 500px;
    height: 300px;
}
footer {
    width: auto;
    height: 300px;
    background-color: midnightblue;
    padding: 0px 100px 0 50px;
}
.foot {
    width: 80%;
}
.hide {
    display: none;
}
input {
    background-color: midnightblue;
    padding: 10px;
    width: 170px;
    color: white;
    border: 1px inset #fff;
    border-radius: 5px;
}
button {
    background-color: midnightblue;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    font-size: x-large;
    height: 40px;
}
h3 a {
    color: #fff;
    text-decoration: none;
    font-size: x-large;
}
#bank {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}
#abmain {
    text-align: center;
}
#sb {
    text-shadow: 5px 5px 5px cyan, -2px -2px 5px blue;
}
#omr {
    text-shadow: 5px 5px 5px gold, -2px -2px 5px gray;
}
#order, #order a {
    font-size: 24px;
    color: black;
}
section img {
    width: 250px;
    height: 250px;
}
article{
    direction: rtl;
    padding: 30px 90px;
    text-align: right;
    font-size: 24px;
}