/* barf map */
.responsive {
    margin-top: 60px;
    width: 100%;
    height: auto;
}
.responsive img {
    width: 800px;
    object-fit:  cover;
}

/* directory text */
.directory-container {
    display:flex;
    column-gap: 30px;
    justify-content: space-between;
    padding: 20px;
}

.block-blog {
    margin-top: 30px;
    color: black;
    background-color: rgba(134, 134, 134, 0.75);
    text-align: center;
    align-content: center;
    justify-self: center;
    font-family: 'JosefinSans';
    text-shadow: 0px 0px 1px black;
    font-weight: 700;
    font-size: 36px;
    box-shadow: 0px 0px 3px darkgray;
    text-decoration: none;
    height: 50px;
}
.block-archive {
    margin-top: 30px;
    color: black;
    background-color: rgba(113, 113, 113, 0.75);
    text-align: center;
    align-content: center;
    justify-self: center;
    font-family: 'JosefinSans';
    text-shadow: 0px 0px 1px black;
    font-weight: 700;
    font-size: 36px;
    box-shadow: 0px 0px 3px darkgray;
    text-decoration: none;
    height: 50px;
}
.block-records {
    margin-top: 30px;
    color: black;
    background-color: rgba(121, 121, 121, 0.75);
    text-align: center;
    align-content: center;
    justify-self: center;
    font-family: 'JosefinSans';
    text-shadow: 0px 0px 1px black;
    font-weight: 700;
    font-size: 36px;
    box-shadow: 0px 0px 3px darkgray;
    text-decoration: none;
    height: 50px;
}
.block-folio {
    margin-top: 30px;
    color: black;
    background-color: rgba(160, 160, 160, 0.75);
    text-align: center;
    align-content: center;
    justify-self: center;
    font-family: 'JosefinSans';
    text-shadow: 0px 0px 1px black;
    font-weight: 700;
    font-size: 36px;
    box-shadow: 0px 0px 3px darkgray;
    text-decoration: none;
    height: 50px;
}

.directory-container div a:hover {
    background-color: #e73a27;
    box-shadow: 0px 0px 3px #e73a27;
    filter: var(--fil);
    color: #f2f7ef;
    text-decoration:none; 
    cursor:pointer;
    text-shadow: 0px 0px 2px #f2f7ef;
}

.directory {
    font-family: 'JosefinSans';
    text-shadow: 0px 0px 1px black;
    font-weight: 400;
    font-size: 24px;
    color: black;
    text-decoration: none;
    justify-items: center;
    padding-top: 10px;
}

/* Directory Flex */
.direct-flex1 {
    width: 400px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-items: center;
}

.direct-flex1 img {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    margin-top: 30px;
}

.direct-flex2 {
    width: 350px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-items: center;
}

.direct-flex3 {
    width: 350px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-items: center;
}

@media screen and (max-width: 1220px) {
    .directory-container {
        flex-direction: column;
        row-gap: 30px;
    }
    .direct-flex1, .direct-flex2, .direct-flex3 {
        width: 100%;
    }
}