<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@media screen and (min-width: 768px) and (max-width: 1024px) {

  .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: 200px;
      height: 200px;
      background-color: #272727;
      border-radius: 50%;
      z-index: -1;
  }

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

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

    .box_contact:before {
        content: "";
        position: absolute;
        width: 98%;
        height: 600px;
        background-color: #272727;
        border-radius: 50%;
        border: #FFFFFF solid 1px;
        z-index: -1;
    }

  #circle{

      position: fixed;
      width: 60px;
      height: 60px;
      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;
    }
}</pre></body></html>