
body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #000;
    perspective: 1000px; /* Perspective 3D */
    overflow: hidden;
}

.container {
    position: relative;
    width: 300px;
    height: 300px;
    transform-style: preserve-3d; /* Pour garder l'effet 3D */

  }

  .circle {
    position: absolute;
    width: 600px;
    height:600px;
    object-fit: cover;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .eclipse {
    position: absolute;
    left: 0%;
    top: 5%;
    width: 300px;
    height: 300px;
    border: 5px solid rgb(255, 255, 149);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotateX(60deg);
    transform-origin: center;
    box-sizing: border-box;
    border-right: transparent;
    border-top: transparent;
    animation: circularMotion 2s linear infinite;
  }

a{
    position: absolute;
    top: 35%;
    /* background-color: red; */
    left: 35%;
    border-radius: 50%;
    font-size: 50px;
    /* border: 1px solid red; */
    padding: 5%;
    z-index: 3;
}
 
.location>img{
    /* position: absolute; */
    margin-top: 200px;
    margin-left: -100px;
    width: 35px;
}


@keyframes circularMotion{
    0% {
        transform: matrix(4,2,3,4,5,6) rotateX(-75deg)  rotateZ(0deg);

    }
    50% {
        transform: matrix(4,2,3,4,5,6) rotateX(-75deg)  rotateZ(180deg);

    }
    100% {
        transform: matrix(4,2,3,4,5,6) rotateX(-75deg)  rotateZ(360deg);

    }
}

/* Page brouillard ------------------------------------ */