/*General*/
body {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Open Sans';
}

.disable-scroll {
    overflow: hidden;
}

.web-title {
    text-align: center;
}

.separator {
    width: 80%;
    height: 1px;
    border-bottom: 1px solid grey;
    margin: auto;
}

/*Navbar*/
.navbar {
    width: 100%;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
}

.link {
    padding: 0 15px;
    margin: 1px;
}

.main_logo {
    height: 80px;
}

@media only screen and (max-width: 900px) {
    .navbar {
        flex-direction: column;
    }

    .links {
        padding: 10px 0 15px 0;
    }

    .main_logo {
        height: 60px;
    }
}

/*Gallery section*/
.tab-selector {
    margin-top: 15px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.tab {
    display: flex;
    width: 120px;
    height: 50px;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: solid sandybrown 1px;
    padding: 6px;
    cursor: pointer;
}

@media only screen and (max-width: 900px) {
    .tab-selector {
        top: 1%;
    }
}

.selected-tab {
    background-color: sandybrown;
}

.images-gallery{
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.fullbody-images{
    display: flex;
}

.gallery-image {
    width: 100px;
    height: 100px;
    box-shadow: 1px;
    margin: 15px;
    -webkit-box-shadow: 11px 10px 10px -6px rgba(0,0,0,0.7);
    -moz-box-shadow: 11px 10px 10px -6px rgba(0,0,0,0.7);
    box-shadow: 11px 10px 10px -6px rgba(0,0,0,0.7);
    cursor: pointer;
}

/*Footer*/
.footer {
    display: flex;
    width: 100%;
    background-color: black;
    align-items: center;
    margin-top: 20px;
    justify-content: center;
}

.footer-info {
    color: white;
    text-align: center;
    font-size: 11px;
}

.full-image {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    overflow: hidden;
}

.displayed-image {
    width: 90%;
    max-width: 500px;
}

.close-icon {
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 30px;
    color: white;
    cursor: pointer;
    padding: 5px;
}

@media only screen and (max-width: 900px) {
    .close-icon {
        top: 1%;
    }
}