@font-face {
    font-family: "Hershey-Noailles-Futura-Triplex-Bold";
    src: url('./fonts/Hershey-Noailles-Futura-Triplex-Bold.otf');
}

@font-face {
    font-family: "Hershey-Noailles-Times-Triplex-Regular";
    src: url('./fonts/Hershey-Noailles-Times-Triplex-Bold.otf');
}

@font-face {
    font-family: "Hershey-Noailles-Times-Duplex-Italic-Regular";
    src: url('./fonts/Hershey-Noailles-Times-Duplex-Italic-Regular.otf');
}

@font-face {
    font-family: "Hershey-Noailles-Times-Simplex-Light";
    src: url('./fonts/Hershey-Noailles-Times-Simplex-Light.otf');
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 24px;
    background: white;
    color: black;
    font-family: "Hershey-Noailles-Times-Triplex-Regular", "Times New Roman", serif;
}

h1,
h2,
h3 {
    font-family: "Hershey-Noailles-Futura-Triplex-Bold", Arial, sans-serif;
    margin-top: 0;
}

label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="file"],
textarea {
    width: 100%;
    border: 1px solid black;
    padding: 6px 8px;
    background: white;
    color: black;
    font-family: "Hershey-Noailles-Times-Triplex-Regular", "Times New Roman", serif;
    margin-top: 4px;
}

textarea {
    resize: vertical;
}

button {
    background: white;
    border: 1px solid black;
    color: black;
    padding: 10px 16px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 12px;
    font-family: "Hershey-Noailles-Futura-Triplex-Bold", Arial, sans-serif;
}

hr {
    border: none;
    border-top: 1px solid black;
    margin: 32px 0;
}

.disclaimer {
    font-size: 1.1rem;
    line-height: 1.4;
    font-family: "Hershey-Noailles-Times-Simplex-Light", "Times New Roman", serif;
    /* font-style: italic; */
}

.wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.img-wrapper {
    display: flex;
    flex-wrap: no-wrap;
    gap: 1em;
    width: 700px;
    overflow-x: auto;
}

.img-wrapper>img {
    width: 300px;
    transition: width 1s;
    border: 1px solid black;
}

.img-wrapper>img:hover {
    width: 400px;
    cursor: zoom-in;
}

#expandedImg {
    position: absolute;
    display: none;
    left: 20%;
    width: 60%;
    border: 1px solid black;
}

@media only screen and (max-width: 600px) {
    #expandedImg {
        visibility: hidden;
    }

    .img-wrapper {

        width: 100%;

    }
}