body{
    background-color: rgb(285,185,00);
}
.row{
    margin-top: 10px;
}
.morePropsIcon, .lessPropsIcon{
    font-size: 24px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: red;
    border: solid thin;
    border-radius: 50%;
    cursor: pointer;
}
.morePropsIcon:after{
    content: '\002B';
}
.lessPropsIcon:after{
    content: '\002D';
}
#morePropsValuesDiv{
    display: none;
}
h5{
    color:white;
    text-align: center;
}
#getMore{
    color:blue;
    cursor:pointer;
}
#searchButton{
    border-radius: 25px;
}
/* #mendlevPeriodicTable :hover{
    transform: scale(3,3);
} */
.glow {
    font-family: cursive;
    font-size: 80px;
    color: #FFF;
    text-shadow: 5px 5px #ff0000;
    text-align: center;
    -webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;
  }
  
  @-webkit-keyframes glow {
    50% {
      text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
    }
    100% {
      text-shadow: 0 0 20px #FF0000, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
    }
  }