@font-face {
    font-family: 'fengardoblack';
    src: url('font/fengardoneue_black-webfont.woff') format('woff'),
        url('font/fengardoneue_black-webfont.ttf') format('truetype'),
        url('font/fengardoneue_black-webfont.svg') format('svg');
}

@font-face {
    font-family: 'fengardo';
    src: url('font/fengardoneue_regular-webfont.woff') format('woff'),
        url('font/fengardoneue_regular-webfont.ttf') format('truetype'),
        url('font/fengardoneue_regular-webfont.svg') format('svg');
}

@font-face {
    font-family: 'minipax';
    src: url('font/Minipax-Regular.woff') format('woff'),
        url('font/Minipax-Regular.ttf') format('truetype'),
        url('font/Minipax-Regular.svg') format('svg');
}

@font-face {
    font-family: 'gulax';
    src: url('font/gulax-webfont.woff') format('woff'),
        url('font/gulax-webfont.ttf') format('truetype'),
        url('font/gulax-webfont.svg') format('svg');

}

html {
    scroll-behavior: smooth;
}

body {
    color: floralwhite;
    background-color: darkslategrey;
}

.bodyInside {
    padding-right: 8vw;
    padding-left: 8vw;
    padding-top: 8vh;
    background-color: darkslategrey;
}

h1 {
    color: floralwhite;
    font-family: fengardoblack;
    letter-spacing: 10px;
}

/* -------- ACCORDION BUTTON STYLES -----------*/

a {
    color: rgba(175, 100, 232, 1);
    transition: ease;
    transition-duration: 1s;
    text-decoration: none;
}

a:hover {
    color: rgba(175, 200, 232, 1);
    transition: ease;
    transition-duration: 1s;
    text-decoration: none;
}

p {
    font-family: minipax;
    font-size: 18px;
}

/* Style the buttons that are used to open and close the accordion panel */

.accordion {
    font-family: fengardoblack;
    font-size: 20px;
    color: floralwhite;
    background-color: darkslategrey;
    cursor: pointer;
    padding-left: 0;
    padding-bottom: 3px;
    padding-top: 3px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    border-bottom: solid 1px floralwhite;
}

.accordion:after {
    color: floralwhite;
    content: '\002B';
    font-family: fengardoblack;
    font-size: 20px;
    letter-spacing: 5px;
    float: right;
    margin-left: 5px;
}

.active:after {
    color: floralwhite;
    content: "\00D7";
    font-family: fengardoblack;
    font-size: 20px;
}

.header1 {
    font-family: fengardoblack;
    font-size: 30px;
    color: floralwhite;
    background: linear-gradient(180deg, rgba(47, 79, 79, 1) 60%, rgba(67, 99, 99, 1) 100%);
    padding-left: 0;
    padding-bottom: 3px;
    padding-top: 3px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    border-bottom: solid 3px floralwhite;
    letter-spacing: 5px;
    margin: 20px 0px 0px 0px;



}

button.header2 {
    font-family: minipax;
    color: floralwhite;
    font-size: 20px;
}


/* ------------ BUTTON BACKGROUND COLOR ------------ */
.active {
    color: floralwhite;
    background: linear-gradient(180deg, rgba(47, 79, 79, 1) 60%, rgba(37, 69, 69, 1) 100%);
}

.accordion:hover {
    background: linear-gradient(180deg, rgba(57, 79, 79, 1) 60%, rgba(67, 99, 99, 1) 100%);
    transition: ease;
}

/* ----------- CONTAINER OF CONTENT ------------ */
.panel {
    background-color: transparent;
    display: none;
}



.gallery img {
    width: 100%;
    cursor: pointer;
}


.imgPanel {
    margin: 20px 0 0 0;
    width: 100%;
}

.textPanel {
    margin: 0 20px 0 0;
}


/* ----------- GRID ------------- */

.gallery {
    background-color: transparent;
    display: none;

}

.grid-item {
    width: 200px;
    margin-bottom: 10px
}

.grid-item--width2 {
    width: 400px;
    margin-bottom: 10px
}


/* ----------------- NAVBAR  ---------------------------------*/
.navbar {
    overflow: hidden;
    background-color: #333;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.navbar p {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: left;
    padding: 2px 20px;
    text-decoration: none;
    font-size: 17px;
}

#lightbox {
    position: fixed;
    /* keeps the lightbox window in the current viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    text-align: center;
}

#lightbox p {
    text-align: right;
    margin-right: 20px;
    font-size: 12px;
}

#lightbox img {
    box-shadow: 0 0 25px rgba(241, 230, 255, 1);
    -webkit-box-shadow: 0 0 25px rgba(241, 230, 255, 1);
    -moz-box-shadow: 0 0 25px rgba(241, 230, 255, 1);
    max-width: 80vw;
    max-height: 80vh;
}

.lightbox-text {
    color:darkslategrey;
    font-family: minipax;
    margin-left: auto;
    margin-right: auto;
}

</style >