body {
    min-height: 100vh;
    background: black;
    font-family: "Winky Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    background-image: url("back.jpg");
}

.oregano-regular {
    font-family: "Oregano", cursive;
    font-weight: 400;
    font-style: normal;
}

.oregano-regular-italic {
    font-family: "Oregano", cursive;
    font-weight: 400;
    font-style: italic;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}
section img {
    width: 100%;
    filter: contrast(1.125);
    transition: var(--trans);
}
picture {
    width: 100%;
}
img {
    max-width: 100%;
    display: block;
}

.hide-on-mobile {
    display: flex;
}
@media (max-width: 960px) {
    .hide-on-mobile {
        display: none !important;
    }
}

.show-on-mobile {
    display: none;
}
@media (max-width: 960px) {
    .show-on-mobile {
        display: flex;
    }
}
ul.gray {
    border: 0px solid #000000;

}
ul.horizontal {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    overflow: hidden;

}
ul.horizontal li {
    float: left;
}
ul.gray li a {
    display: block;
    color: #e4cfa2;
    text-align: center;
    padding: 12px 12px;
    text-decoration: none;
    font-size: 20px;

}

.heavy{
    font-weight: 600;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}