body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px;

    color: brown;
}

body a {
    color: red;
}

/* from Google */
.material-symbols-outlined {
    vertical-align: bottom;
    font-size: 1.1rem;
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 16
}

.page {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

header {
    /* color: darkblue; */
    /* background-color: #cacaca; */
    background-color: white;

    padding: 0;

    text-align: center;
    /* box-shadow: 0 0 5px 0px gray; */
}

header .header-title {
    font-size: 2rem;
    font-weight: bold;
    margin: 0.75rem;
    color: #003c77;
}

header .header-title .title-orange {
    color: #f4792d;
}

header .menu {
    background-color: #1d1d1d;
    color: white;
}

header .menu ul {
    list-style: none;
    margin: 0;
    padding: 0.5em;
}

header .menu ul li {
    display: inline;
    margin: 0 0.25em 0;
    padding: 0.5em;
}

header .menu ul li:hover {
    background-color: rgba(255, 255, 255, 0.38);
}

header .menu a {
    color: white;
    cursor: pointer;
    text-decoration: none;
    vertical-align: bottom;
}

/* header .menu a.a-home::before {
    font-family: 'Material Icons';
    content: "\e88a";
}
header .menu a.a-equipment::before {
    font-family: 'Material Icons';
    content: "\e8b8";
}
header .menu a.a-about::before {
    font-family: 'Material Icons';
    content: "\eb8b";
} */

main {
    flex: 1 1;
    overflow: auto;
    width: 100%;
}

.al-arab {
    background-image: url('../images/dubai-burj-al-arab-1.jpg');
    background-position: center 0px;
    background-repeat: no-repeat;
    background-size: cover;
}

main .clean {
    padding: 1rem;
}

main .main {
    padding: 1rem;

    text-align: center;
    /* color: #ff8022; */
    color: white;
}

main .main ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

main .main ul li {
    margin: 0 0 0.5rem 0;
    padding: 0;
}

main .about {
    padding: 1rem;
}

main .about h2 {
    margin-top: 0;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex: 0 0;
    background-color: #1d1d1d;
    color: white;

    padding: 1rem;
}

footer .footer-menu {
    flex: 1 0;
    text-align: left;
    margin-right: 1rem;
}

footer .footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .footer-menu ul li:not(:last-child) {
    margin-bottom: 0.18rem;
}

footer .footer-menu a {
    color: white;
}

footer .footer-menu a:hover {
    text-decoration: none;
}

footer .address {
    flex: 1 0;
    margin: 0 1em;
    text-align: center;
}

footer .copyright {
    flex: 1 0;
    margin-left: 1em;
    text-align: right;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    /* axios */
    align-items: center;
    /* contetnt */
    justify-content: center;
}

.gallery figure {
    margin: 1rem;
}

.gallery figure img {
    height: 14rem;
    cursor: zoom-in;
}

.gallery figure figcaption {
    text-align: center;
    font-weight: bold;
}

.modal-image {
    position: fixed;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.87);
    cursor: zoom-out;
    transition: all 1s ease-in-out;
}

.modal-image.full-screen {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-image img {
    max-height: 90%;
    box-shadow: 0 0 1rem 0px black;
}