@charset "ISO-8859-1";

body{
    font-family:Arial, sans-serif;
    background-color: rgb(42, 41, 41);
    color : white;
    margin: 0;
    width :100%;
    
}
#blocBouton{
    width:100%;
    display: flex;
    justify-content: center;
}
#blocBouton button{
    width:150px;
    height:50px;
    text-align: center;
}

button{
    align-self: center;
    background-color: #f5c542;
    color: #111;
    border: none;
    cursor: pointer;
}
button:hover {
    background-color: #ff914d;
    transform: scale(1.05);
}
h1{
    text-align: center;
    color: #f5c542;
}

h2{
    color: #ff914d;
    border-bottom: 2px solid #444;
    padding-bottom: 5px;
}
h3{
    color: #ff4d4d;
    border-bottom: 2px solid #444;
    padding-bottom: 5px;
}

#tilesheet{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap:30px;
    grid-auto-rows:minmax(100px,auto);
    width:100%;
}
.tile{
    border-style:solid;
    border-color:aquamarine;
    border-width: 10px;

}
.content{
    border-style:groove;
    border-color:rgb(42, 253, 98);
    border-width: 30px;
}
.content img{
    width:100%;
    height:auto;
}

.whiteGround{
    background-color: azure;
}