/* styles.css */
.aiguille {
    position: absolute;
    width: 140px;
    height: 5px;
    background-color: red;
    transform-origin: center left;
    top: calc((100% - 5px) / 2);
    left: 50%;
}

.aiguille img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid red;
    position: absolute;
    rotate: 90deg;
    top: -25px;
    right: 12.5px;
}

/* styles.css */
html {
    width: 300px;
    height: 300px;
}

body {
    /* display: flex;
    justify-content: center;
    align-items: center; */
    display: block;
    width: 300px !important;
    height: 300px !important;
    background-color: #f0f0f0;
    margin: 0;
}

.clock {
    position: relative;
    width: 290px;
    height: 290px;
    border-radius: 50%;
    border: 5px solid #333;
    display: flex;
    justify-content: center;
    align-items: center;
}

.location {
    position: absolute;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
    display: none;
    width: 10%;
    height: 10%;
    max-width: 100px;
    max-height: 100px;
    top: 42.5%;
    left: 42.5%;
    border: 2px solid black;
    justify-content: center;
    align-items: center;
    /* padding: 10px; */
    border-radius: 50%;
    /* margin: 0; */
}

.location.active {
    display: flex;
}

.location.active img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

#maison {
    top: 10px;
    left: 100px;
}

#poudlard {
    top: 100px;
    right: 10px;
}

#trois-balais {
    bottom: 10px;
    right: 100px;
}

#cabane-hurlante {
    bottom: 100px;
    left: 10px;
}

#weasley {
    top: 10px;
    right: 100px;
}

#ollivander {
    bottom: 10px;
    left: 100px;
}

#gringotts {
    top: 100px;
    left: 10px;
}