@font-face {
    font-family: 'New York';
    src: url('../font/NewYork.woff2') format('woff2'),
        url('../font/NewYork.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    box-sizing: border-box;
    color: #000;
    font-family: 'Sora';
    margin: 0;
    overflow-x: hidden;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Arapey';
    width: 95%;
    padding: 0 48px;
    font-size: 1.7em;
    position: sticky;
    top: 0;
    margin: auto;
    z-index: 100;
    background-color: #ffffff57;
    backdrop-filter: blur(15px);
}

header a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    transition: all 1s;
}

header a:hover {
    border-bottom: 1px solid #000;
    padding: 0 15px;
}

nav li {
    display: inline;
    padding-right: 40px;
}

#recherche {
    display: none;
}

.recherche input {
    border-radius: 100px;
    border: #000000 solid 2px;
    padding: 5px 50px;
    background-color: transparent;
    color: #000000;
    font-size: 0.7em;
    font-family: 'Sora';
}

.recherche ::placeholder {
    color: #000000;
    font-family: 'Soligant';
}

button {
    border-radius: 50%;
    border: #000 solid 2px;
    padding: 8px;
    background-color: #000;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

button:hover {
    background-color: #AF7A08;
    border-color: #AF7A08;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
}

h1,
h3 {
    font-family: 'New York';
    font-weight: 400;
}

h1 {
    font-size: 7rem;
    text-align: center;
}

.fiche img {
    display: block;
    margin: auto;
    margin-bottom: 200px;
    max-width: 1200px;
}

h2 {
    font-family: 'Arapey';
    font-style: italic;
    font-weight: 400;
    font-size: 5rem;
    margin-left: 200px;
}

.fiche {
    margin-bottom: 150px;
}

.fiche p {
    width: 800px;
    margin: auto;
    font-size: 1.1em;
}

.site {
    color: #383838;
    padding-top: 50px;
    font-style: italic;
}

.site a {
    color: #383838;
}

.site a:hover {
    color: darkgoldenrod;
    transition: ease-in-out 0.2s;
}


.travaux {
    position: relative;
}

.unique {
    display: block;
    margin-left: auto;
    border-radius: 1000px 0 0 1000px;
    max-width: 600px;
}

.travaux p {
    width: 400px;
    margin: 100px 0 0 100px;
}

.liens a {
    color: #000;
    text-decoration: none;
    font-size: 1.2rem;
}

h3 {
    font-size: 7rem;
    margin-left: 100px;
}

h3 a {
    color: #000;
    text-decoration: none;
    font-size: 11rem;
    position: absolute;
    bottom: 40%;
    left: 5%;
    transition: 0.5s;
}

h3 a:hover {
    font-size: 11.5rem;
}

h3 a::after {
    content: url('../Images/Autres/black_arrow.png');
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
}

h3 a:hover::after {
    opacity: 1;
}

.art {
    margin: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
}

.miniF {
    position: sticky;
    top: 100px;
    margin-top: 20px;
    width: 600px;
    height: auto;
    padding: 15px;
    border-radius: 5px;
    background-color: #e6a00988;
}

.art img {
    display: block;
    margin: auto;
    margin-top: 20px;
    max-width: 1100px;
    height: auto;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.multiple {
    display: grid;
    place-items: center;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 20px;
    margin-bottom: 100px;
}

.multiple img {
    transition: ease-in-out 1s;
    max-width: 450px;
}

.multiple img:hover {
    transform: translateY(-10px);
    opacity: 0.8;
}

.liens {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: auto;
    padding-top: 40px;
}

footer {
    text-align: center;
    padding-top: 20px;
}

a:focus,
button:focus,
input:focus {
    outline: 2px dashed #ce0000;
    outline-offset: 3px;
}

@media screen and (max-width:900px) {
    header {
        width: 80%;
        flex-direction: column;
    }

}

@media screen and (max-width:1200px) {
    header {
        font-size: 1.5em;
        padding: 0 30px;
    }

    .recherche {
        display: none;
    }

    #recherche {
        display: block;
    }

    h3 a {
        font-size: 8rem;
    }

    h3 a:hover {
        font-size: 8.1rem;
    }

    .art {
        flex-direction: column;
    }

    .art * {
        margin: auto;
    }

    .art img {
        max-width: 90%;
    }
}