body {
    position: relative;
}
.constellation {
    position: relative;
    height: 700px;
}
.point {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #313131;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
    z-index: 100;
    transform: scale(1.0);
    transition: transform 0.2s, background-color 0.2s, box-shadow 0.3s;
    cursor: pointer;
    transition: box-shadow 0.2s, border 0.2s;
}

.constela1 .point, .constela4 .point{
    background-color: #000000;
}
.constela2 .point, .constela3 .point{
    background-color: #595959;
}
.constela5 .point{
    background-color: #303030;
}

.point:hover {
    background-color: #597e85;
    transform: scale(1.2);
    box-shadow: 0px 0px 7px rgba(0,0,0,0.5);
    transition: transform 0.2s, background-color 0.2s, box-shadow 0.3s;

}


/*--------------------------------CONSTELLATION 1--------------------------------*/
#art1 {
    top: 80px;
    left: 25%;
}
#art2 {
    top: 190px;
    left: 32%;
}
#art3 {
    top: 230px;
    left: 50%;
}
#art4 {
    top: 130px;
    left: 62%;
}
 #art5 {
    top: 0px;
    left: 55%;
}
/*--------------------------------CONSTELLATION 2--------------------------------*/

 #art6 {
    top: 30px;
    left: 0%;
}
 #art7 {
    top: 100px;
    left: 12%;
}
#art8 {
   top: 30px;
   left: 35%;
}
#art9 {
   top: 110px;
   left: 45%;
}
#art10 {
   top: 0px;
   left: 48%;
}
/*--------------------------------CONSTELLATION 3--------------------------------*/

 #art11 {
    top: 90px;
    left: 20%;
}
 #art12 {
    top: 120px;
    left: 39%;
}
#art13 {
   top: 210px;
   left: 50%;
}
#art14 {
   top: 120px;
   left: 60%;
}
#art15 {
   top: 0px;
   left: 40%;
}

/*--------------------------------CONSTELLATION 4--------------------------------*/

 #art16 {
    top: 100px;
    left: 0%;
}
 #art17 {
    top: 50px;
    left: 15%;
}
#art18 {
   top: 0px;
   left: 40%;
}
#art19 {
   top: 130px;
   left: 55%;
}
#art20 {
   top: 170px;
   left: 80%;
}

/*--------------------------------CONSTELLATION 5--------------------------------*/

 #art21 {
    top: 50px;
    left: 0%;
}
 #art22 {
    top: 0px;
    left: 20%;
}
#art23 {
   top: 150px;
   left: 18%;
}
#art24 {
   top: 100px;
   left: 55%;
}
#art25 {
   top: 250px;
   left: 45%;
}


.canvas {
    position: absolute;
    z-index: 0;
}
.illuminated {
    background-color: #6c919a !important;
    box-sizing: border-box;
    border: 2px solid rgba(108,145,154,0.9) !important;
    box-shadow: 0 0 12px 10px rgba(108,145,154,0.5) !important;
    transition: box-shadow 0.2s, border 0s;
}
.art-info {
    position: absolute;
    background-color: rgba(63,63,63,1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 10px;
    box-sizing: border-box;
    max-width: 250px;
    z-index: 200;
}
.art-title {
    font-size: 1.0em;
    font-family: 'Lato', sans-serif;
    color: #FFFFFF;
}
.arrow-down {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid rgba(63,63,63,1);
  position: absolute;
  bottom: -10px;
}
.left-triangle{
    border-radius: 5px 5px 5px 0px;
}
.right-triangle{
    border-radius: 5px 5px 0px 5px;
}
