body {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #d9d9d9;
    margin: 0;
    padding: 0;
}

/*----POLICE----*/
h1{
    font-family: "Faune One", serif;
    font-size: 50px;
}

h2{
    font-family: "Grand Hotel", serif;
    font-weight: 400;
    font-size: 25px;
}

h3{
    font-family: "Grand Hotel", serif;
    font-weight: 400;
    font-size: 15px;
    color: fff;
}

p{
    font-family: "Fauna One", serif;
    font-size: 13px;
    padding: 0 20px;
}

i{
    padding-top: 10px;
}

a{
    text-decoration: none;
    color: inherit;
}

a:hover{
    color: #9198e5;
    text-decoration: underline;
}

/*----BLOC----*/
@media screen and (min-width: 768px) {
    .container {
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-left: 50%;
        margin-right: 50%;
    }

    .line_box{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        height: 100px;
        gap: 100px;
        margin: 0 50%;
    }

    .box{
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 200px;
        text-align: center;
    }

    .box_middle{
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 200px;
        text-align: center;
        margin: 0 30px;

    }

    .middle_box{
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 80px;
        height: 500px;
    }

    .box_photo{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 200px;
        text-align: center;
        z-index: 2;
    }

    .box_photo:before {
        content: "";
        position: absolute;
        width: 380px;
        height: 380px;
        background-color: #272727;
        border-radius: 50%;
        z-index: -1;
    }

    .photo{
        position: absolute;
        height: 380px;
        transform: rotate(-5deg);
        z-index: 1;
        padding-top: 30px;
        padding-left: 10px;
    }


}

@media screen and (min-width: 1281px) {
    #circle{

        position: fixed;
        width: 100px;
        height: 100px;
        background-color: #272727;
        border-radius: 50%;
        pointer-events: none; /* empêche d'interagir avec le cercle */
        transform: translate(-50%, -50%);
        transition: width 1.5s ease, height 1.5s ease;
        z-index: -2;
        
      }

    #circle.hover {
        width: 6000px; /* assez grand pour couvrir tout l'écran */
        height: 6000px;
    }
}


.photo:hover{
    transform: scale(1.1);
    transition: transform 0.3s ease-out;
}

.transition {
    bottom: 0;
      left: 0;
      overflow: hidden;
      position: fixed;
      right: 0;
      top: 0;
      z-index: 10;
  }