@charset "ISO-8859-1";/* CSS Document */

body{
    font-family:Arial, sans-serif;
    background-color: rgb(42, 41, 41);
    color : white;
    margin: 0;
    width :100%;
    display: flex;
    flex-direction: column;
}

p{
    line-height: 1.5;
}
h1,h2,h3 {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}
h1{
    text-align: center;
    color: #f5c542;
    font-size: 3rem;
}

h2{
    color: #ff914d;
    border-bottom: 2px solid #444;
    padding-bottom: 5px;
    font-size: 2rem;
}
h3{
    color: #ff564d;
    border-bottom: 2px solid #444;
    padding-bottom: 5px;
    font-size: 1.5rem;
}

#content,#presentation,#rules,#about,#lore,p{
    margin-left: 5%;
    margin-right: 5%;
}

#begin{
    display: flex;
    justify-content: center;
}
#begin>a>button{
    height:90px;
    width: 160px;
}
#bestiaire,#End{
    display: flex;
    justify-content: center;
}
#bestiaire>a>button{
    height:70px;
    width: 112px;
}

#End>a>button{
    height:120px;
    width: 112px;
    font-family:'Cinzel';
    font-size:2rem;
    text-shadow: 0 0 10px rgb(132, 0, 255);
}
button{
    align-self: center;
    background-color: #f5c542;
    color: #111;
    border: none;
    cursor: pointer;
}
button:hover {
    background-color: #ff914d;
    transform: scale(1.05);
}

button:disabled{
    opacity: 0.5;
    cursor: not-allowed;
    background-color: grey;
    pointer-events: none;
}
button:disabled:hover {
    background-color: initial;
    transform: none;
}

#tilesheet{
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
    
}
.whiteGround{
    background-color: azure;
}
#tilesheet .tile{
    width:max(25%,300px);
    height: auto;
}
#tilesheet img{
    width: 100%;
    object-fit:contain;
}

#footer{
    display: flex;
    flex-direction: row;
    width :100%;
}

#footer ul{
    border-top-style: solid;
    display: flex;
    flex-direction: column;
}