@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;
}


h1{
    text-align: center;
    color: #f5c542;
}
#container{
    display:flex;
    justify-content: center;
}

#container img{
    min-width:30%;
    width:400px;
}
h2{
    color: #ff914d;
    border-bottom: 2px solid #444;
    padding-bottom: 5px;
    margin-left:5%;
}
h3{
    color: #ff4d4d;
    border-bottom: 2px solid #444;
    padding-bottom: 5px;
    margin-left:5%;
}

#histoire,#intro,#origine,.histoire{
    margin-left: 10%;
    margin-right: 10%;
}

p{
    line-height: 1.5;
}
#choices{
    display:flex;
    flex-wrap: wrap;
    justify-content: center;

    gap :10px;
}
#choices button{
    min-height: 70px;
    min-width: 112px;
}
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;
}


.whiteGround{
    background-color: azure;
}

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

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

#elem{
    display:flex;
    justify-content: space-between;
    height:100px;
}