@import url('https://fonts.googleapis.com/css2?family=Baloo+2&display=swap');


:root {
    background-color: rgb(66, 194, 255);
    font-family: 'Baloo 2';
}



.element {
    position: fixed;
    top: 0%;
    box-shadow: 0.1em 0.1em 0.3em rgb(76, 142, 148);
    left: 50%;
    background-color: rgb(133, 244, 255);
    color: black;
    border-radius: 20%;
    padding: 8px;
    margin: 3px;
}

.title {
    position: fixed;
    top: 0%;
    box-shadow: 0.1em 0.1em 0.3em rgb(76, 142, 148);
    left: 50%;
    background-color: rgb(66, 194, 255);
    color: black;
    border-radius: 20%;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    padding: 3px;   
    height: 50px;
    width: 50px;
    margin-left: -25px; /* Negative half of width. */

}



div.information {
    position: fixed;
    top: 50%;
    left: 50%;
    box-shadow: 0.1em 0.2em 0.5em rgb(76, 142, 148);
    background-color: rgb(66, 194, 255);
    color: black;

    padding: 3px;   
    height: 78px;
    width: 309px;
    margin-left: -154.5px; /* Negative half of width. */
    transform: scale(1.5);
}

div.information-in {
    position: fixed;
    top: 50%;
    left: 50%;
    box-shadow: 0.1em 0.2em 0.5em rgb(76, 142, 148);
    background-color: rgb(66, 194, 255);
    color: black;

    padding: 3px;   
    height: 234px;
    width: 309px;
    margin-left: -154.5px; /* Negative half of width. */
    margin-top: -100px;
    transform: scale(1.5);
}
.text-interested.u::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1.5px;
    bottom: 0;
    left: 0;
    background-color: white;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    cursor: grab;
  }

  a.text-interested.u:hover::before {
    transform: scaleX(1);
  }
.background {
  
    position
    :
     absolute
    ;
      
    display
    :
     block
    ;
      
    top
    : 0;
      
    left
    : 0;
      
    z-index
    : 0;
    }

li.information-1 {
    list-style: none;
    flex-direction:column;
    position: relative;
    margin-left: 2%;
}
li.information-2 {
    list-style: none;
    flex-direction:row;
    margin: 2px;
    margin-top: 6px;
    margin-left: 2.5%;

}


a.information-element {
    position: relative;
    text-decoration: none;
    margin: 0.75px;
    color: white;
    cursor: grab;
}
a.information-element::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1.5px;
    bottom: 0;
    left: 0;
    background-color: white;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    cursor: grab;
  }

  a.information-element:hover::before {
    transform: scaleX(1);
  }



