@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-image: linear-gradient(to right, #27242d 0%, rgb(0, 0, 0) 100%);
    color: #fff;
    text-align: center;
}
#test{
    color: #c78989;
}
#textedutitre{
    max-width: 40%;
}

h2 {
    margin-top: 1%;
    font-weight: bolder;
    color: #2e26a3;
    background-image: -webkit-radial-gradient(closest-side, #2e26a3 0%, #a96fd9 98%, #903884 61%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h3{
    text-align: center;
    margin-top: 2%;
    margin-bottom: 2%;
    position: relative;
}

h4{
    text-align: center;
    color:#41406d
}
#square-container {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 33vw;
    background-color: #733b9353;
    padding: 20px;
    border-radius: 10px 0px 0px 10px;
    box-shadow: 0 0 100px rgba(0.4, 0, 0, 0.1);
}

#square-container p {
    font-size: 1em;
    font-family: 'Poppins', sans-serif;
    color: #c1b9ff;
    padding-bottom: 3vh;
    left: 0;
}

.star-svg {
    transition: transform 0.3s ease-in-out, fill 0.3s ease-in-out;
    cursor: pointer;
    
}

.clicked-star {
    
    filter: hue-rotate(70deg);
    transform: scale(1.1);
}

.star-svg.clicked-star {
    fill: yellow;
    transform: scale(1.2);
}

#map-stars-container {
    width:90%;
    position: relative;
    flex: 2;
    display: flex;
}

#map-container {
    width: 50%;
}

.star-svg {
    width: 1.5em;
    height: 1.5em;
    position: absolute;
}

#star-0 {
    left: 27.8%;
    top: 52%;
}

#star-1 {
    left: 41.5%;
    top: 50%;
}

#star-2 {
    left: 39.3%;
    top: 86%;
}

#star-3 {
    left: 11%;
    top: 55.2%;
}

#star-4 {
    left: 35%;
    top: 63%;
}

 