* {
    margin: 0;
    padding: 0;
    color:rgb(10, 12, 109);
    border-color:rgb(10, 12, 109);
}


body {
    height: 100vh;
    width: 100%;
    padding: 0 0 0 0;
    margin:  0 0 0 0;
    font-family:Arial, Helvetica, sans-serif;
    cursor: url('assets/cursor_pointer.png'), default;
    background-color:rgb(248, 253, 254);
}


header {
    border-bottom-style: solid;
    border-top-style: solid;
    border-width: 2px;
    padding-left: 1vw;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 70px;
}

.header_img {
    width: 100%;
    height: 95vh;
    overflow: hidden;
    object-position: 0 0;
    object-fit: cover;
}

.header_img_logos {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    object-position: top;
    object-fit: cover;
}

@font-face {
  font-family: myFont_header; /* set name */
  src: url(assets/fonts/badger/Badger.otf); /* url of the font */
  font-weight: none;
}

h1 {
    font-family: "Cossette Titre", sans-serif;
    font-weight: 700;
    font-size: 60px;
}

p {
    font-family: "Fragment Mono", monospace;
    font-weight: 400;
    font-style: normal;
    font-size: 13px;
    hyphens: auto;
}

u {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

li {
    font-family: "Cossette Titre", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
}

a {
    text-decoration: none;
}

.pageList {
    display: flex;
    align-items: stretch;
    list-style: none;
    height:100%;
    
}

.pageList a {
    padding: 0px 20px 0px 20px;
    border-left: 2px solid;
    display:flex;
    align-items: center;
    cursor: url('assets/cursor_klick.png'), pointer;
}

.filtering select{
    cursor: url('assets/cursor_klick.png'), pointer;
}

.intro{
    display: grid;
    gap: 1.5vw;
    grid-template-columns: 1fr 5fr;
    padding: 2vh 1vw 2vh 1vw;
}

.logo_grid{
    display: inline-grid;
    gap: 1.5vw;
    grid-template-columns: 1fr 1fr 1fr 2fr;
    padding: 2vh 1vw 4vh 1vw;
}

.logo_grid img{
    width: 100%;
}

.fox_logo{
    grid-row: 1 / span 2;
    grid-column-start: 4;
}

.fox_logo2{
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.logo_grid p{
    grid-column: 2 / span 2;
}

.logo_grid pre{
    color:hsl(212, 25%, 32%);
}

.paragraph {
    column-count: 3;
}

.main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height:100%;
    padding: 1vw;
}

.filtering{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-bottom: 1vh;
}

.filtering select{
    border-radius: 100px;
    margin-left: 5px;
    font-weight: bold;
    padding: 5px;

}

.main_gallery{
    display: grid;
    justify-content: center;
    height:100%;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2vw;
}


.card{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card img{
    width: 90%;
    height: auto;
    display: block;
    object-fit: contain;
}

.overlay{
    position: absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    opacity:0;
    transition: opacity 0.5s;
}

.overlay li{
    list-style: none;
    color:ghostwhite;
    font-weight: bolder;
}

.card:hover .overlay {
    opacity: 1;
}

.overlay_registration {
    position: absolute;
    inset: 0;                
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    pointer-events: none;  
}

.crop_mark {
    width: 30px;
    height: 30px;
}

.top-left {
    justify-self: start;
    align-self: start;
    border-top: solid;
    border-left: solid;
    border-width: 1px;
}

.top-right {
    justify-self: end;
    align-self: start;
    border-top: solid;
    border-right: solid;
    border-width: 1px;
}

.bottom-left {
    justify-self: start;
    align-self: end;
    border-bottom: solid;
    border-left: solid;
    border-width: 1px;
}

.bottom-right {
    justify-self: end;
    align-self: end;
    border-bottom: solid;
    border-right: solid;
    border-width: 1px;
}
