button, a{
    cursor: pointer;
}

main{
    text-align: center;
    margin-left: 1.875rem;
    margin-right: 1.875rem;
}

h1{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

#description-du-site{
    width: 100%;
    max-width: 18.75rem;
    display: flex;
    justify-self: center;
}

#liste-bloque-application{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 4rem;
    row-gap: 2.5rem;
    width: calc(100% - 0.625rem);
    margin-left: 0.625rem;
    margin-right: 0.625rem;
}

.bloque-application img{
    height: 6.25rem;
}

.bloque-application h4{
    margin-bottom: 0;
}

.bloque-application{
    transition: 0.2s;
    width: 9.375rem;
    padding: 0.625rem;
    border-radius: 1.25rem;
    border: solid 0.125rem white;
    box-shadow: 0.0625rem 0.0625rem 0.1875rem gray;
    text-decoration: none;
    color: inherit;
}

.bloque-application:hover{
    transition: 0.2s;
    border: solid 0.125rem;
    background-color: azure;
    box-shadow: 0 0;
}

.titre-de-partie{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 2.3rem;
}


/* --------- le-yo-kai-du-jour ---------*/
#le-yo-kai-du-jour {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 56.25rem;
    margin: 0 auto;
    padding: 1.25rem;
    font-family: sans-serif;
    text-align: center;
}

#le-yo-kai-du-jour  .titre-de-partie {
    flex: 0 0 100%;
    text-align: center;
}

#le-yo-kai-du-jour img {
    transition: 0.3s;
    max-width: 12.5rem;
    height: auto;
    flex: 1 1 12.5rem;
}

#le-yo-kai-du-jour img:hover {
    transition: 0.3s;
    transform: scale(1.2);
}

#le-yo-kai-du-jour h4, 
#le-yo-kai-du-jour p {
    flex: 1 1 18.75rem;
    padding: 0.625rem;
}

#le-yo-kai-du-jour p{
    max-width: 31.25rem;
}

#le-yo-kai-du-jour h4 {
    transition: 0.3s;
    font-size: 2rem;
    margin: 0;
    /* text-align: center; */
    margin-left: 1.875rem;
}

#le-yo-kai-du-jour a {
    transition: 0.3s;
    color:rgb(53, 53, 220);
    text-decoration:underline;
}

#le-yo-kai-du-jour a:hover {
    transition: 0.3s;
    color:rgb(133, 133, 255);
}

#le-yo-kai-du-jour p {
    font-size: 1.1rem;
    line-height: 1.5;
}

@media (min-width: 48rem) {
    #le-yo-kai-du-jour {
        text-align: left;
    }
}

/*Actualité*/

.block-actualité{
    transition: 0.2s;
    border: solid 0.125rem;
    border-radius: 0.8125rem;
    width: 12.5rem;
    position: relative;
    
    display: flex;
    justify-content: center;
    flex-direction: column;
    /* overflow: hidden; */
    text-decoration: none;
    color: inherit;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.logo-jeu-actualitée{
    position: absolute;
    width: 6.25rem;
    aspect-ratio: 16/9;
    top:-1.75rem;
    left: 3.125rem;
    z-index: 1;
    object-fit: contain;
}

.image-actualité{
    width: 100%;
    aspect-ratio: 16/9;
    border: solid 0.125rem;
    border-radius: 0.8125rem;
    position: relative;
    left:-0.2rem;
    top:-0.2rem;
    object-fit: contain;
}

.titre-actualité{
    margin-bottom: 0rem;
    margin-top: 1rem;
    font-size: 1.2rem;
}

.block-actualité p{
    margin-left: 10px;
    margin-right: 10px;
}

/* autre */

.block-actualité:hover{
    transition: 0.2s;
    transform: scale(1.1);
}

#share-project-button{
    transition: 0.2s;
    font-size: 1.15rem;
    font-weight: bold;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    width: 16rem;
    height: 4.5rem;
    border: 0px;
    border-radius: 16px;
    background-color: rgb(255, 246, 142);
    box-shadow: 2px 4px rgb(223, 208, 45);
}

#share-project-button:hover{
    transition: 0.2s;
    transform: translateY(2px) translateX(1px);
    background-color: rgb(255, 249, 187);
    box-shadow: 1px 2px rgb(223, 208, 45);
}

#share-project-button:active{
    transition: 0.2s;
    transform: translateY(4px) translateX(2px);
    background-color: rgb(226, 222, 181);
    box-shadow: 0px 0px rgb(223, 208, 45);
}