@media screen and (min-width: 1025px) and (max-width: 1281px) {
  .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: 280px;
      height: 280px;
      background-color: #272727;
      border-radius: 50%;
      z-index: -1;
  }

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

  #circle{

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

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