/* index.css */

body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
}

.container {
    /* Si tu veux ajouter du contenu centré sur la page */
    text-align: center;
}

.circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid white;
}

.circle img {
    width: 100%;
    height: auto;
}
