@font-face {
    font-family: 'Gotham-Thin';
    src: url('src/assets/fonts/Gotham-Thin.otf');
}
@font-face {
    font-family: 'Gotham-Book';
    src: url('src/assets/fonts/Gotham-Book.otf');
}
@font-face {
    font-family: 'Gotham-Medium';
    src: url('src/assets/fonts/Gotham-Medium.otf');
}
@font-face {
    font-family: 'Gotham-Bold';
    src: url('src/assets/fonts/Gotham-Bold.otf');
}

body {
    margin: 0px;
    font-family: "Gotham-Book";
}

header {
    grid-column: span 3;
    background-color: #E3E3E4;
    /* border-bottom: 1px solid #E3E3E4; */
}

.menu-links {
    display: flex;
    flex-direction: row;
    grid-column: span 3;
}

a {
    text-decoration: none;
}

a:link {
    color: white;
}
a:visited {
    color: white;
}

.menu-link {
    background-color: #009DDC;
    font-family: 'Gotham-Book';
    text-decoration: none;
    padding: 12px;
    margin: 12px;
}

.nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: auto;
    gap: 10px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
}

.grid-container > a {
    text-decoration: none;
}

.reolink-img {
    display: flex;
    flex-direction: column;
    width: auto;
    text-align: center;
    padding: 20px;
}


img {
    max-width: 100%;
    height: auto;
}

.flood-img {
    cursor: pointer;
    transition: 0.3s;
}


.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.75);
 }

 .modalImg {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    width: 60%;
    max-width: 700px;
    transform: scale(1.5);
 }

 .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
 }

 .close:hover,
 .close:focus {
    color: rgb(255, 0, 0);
    cursor: pointer;
 }

 @media only screen and (max-width: 700px) {
    .modalImage {
       width: 100%;
    }
 }