@font-face {
    font-family: DIN Pro;
    src: url("../font/DINPro.otf");
}

@font-face {
    font-family: Great Vibes;
    src: url("../font/GreatVibes-Regular.ttf");
}

header{
    background-image: url("../img/header/background.png");
    background-repeat:no-repeat;
    background-size: cover;
    background-position: center;
    font-family: "DIN Pro", serif;
    color: white;
    width:100%;
    height: calc(10vh + 10vw);
    max-height:max(15vh, 180px);
    margin:0;
    left:0;
    top:0;
    z-index:0;
    position: relative;
     overflow: hidden;
}

#club-logo-link{

}

#club-logo{
    position: absolute;
    top: 50%;
    left: 2%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    max-height: 90%;
}

#main-title{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-25%, -50%);
}

#menu{
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style-type: none;
    margin: 0;
    padding: 0;

    overflow: hidden;
    top:0;
    width: 100%;
    z-index: 5;
}

#main-title * {
    margin: 0;
    padding: 0;
}

#main-title h1 {
    position: absolute;
    font-size: 10vw;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    opacity: 0.55;
    z-index: 0;
}

#main-title h2 {
    position: absolute;
    left: 25%;
    font-size: 6vw;
    z-index: 1;
    font-family: "Great Vibes", serif;
    font-weight: lighter;
}

.boutonMenu{
    background-color:#146FB3;
    padding:15px 5px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border:solid #155f97 0.5px;
    text-align:center;
}

.boutonMenu:hover{
    background-color:#155f97;
}

#premierLien{
    border:solid #155f97 0.5px;
}

#admin{
    background-color: #6f14ac;
    border:solid #601791 0.5px;
}

#admin:hover{
    background-color: #601791;
}

#deconnexion{
    background-color:#CF2A27;
    border:solid #ad211f 0.5px;
}

#deconnexion:hover{
    background-color:#ad211f;
}

.lienMenu{
    text-decoration: none;
    color:white;
    display:block;
}

body::-webkit-scrollbar{
    width: 1em;
}

body::-webkit-scrollbar-track{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}

body::-webkit-scrollbar-thumb{
    background-color: darkgrey;
    outline: 1px solid slategrey;
}