html {
    background-color: #D9D9D9;
  }

  .Container {
    /* border: 2px solid gray; */
    max-width: 70vw;
    margin: auto;
    margin-bottom: 40px;
    padding: 30px;
    font-size: 20px;
    text-align: justify;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0,0.4);
    border-radius: 10px;
    background-color: #D4CDB2;
    position:relative;
  }
  
  .edit{
    position:absolute;
    height:30px;
    background-color: #2ab3e4;
    border:1px solid rgb(156, 155, 155);
    padding:1px 4px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    left:100%;
    top:50%;
    transform:translateY(-50%) scale(0.7);
    text-decoration: none;
    color:black;
    /* opacity: 0; */
}
.edit:hover{
  cursor:pointer;
  background: yellow;
}
  .add_publication{
    height:30px;
    background-color: #2ab3e4;
    border:1px solid rgb(156, 155, 155);
    padding:1px 4px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.add_publication:hover{
    transform:scale(1.1);
    cursor: pointer;
    background: yellowgreen;
    box-shadow: 0 2px 10px rgba(90, 90, 90, 0.1);
}
  .title {
    text-align: center;
    margin: 40px 0px 50px;
    font-size: 40px;
  }

  li {
    margin: 20px 15px;
  }
  li a{
    text-decoration: underline;
    color:blue;
    word-wrap: break-word;
  }
  li a:hover{
    color:rgb(238, 138, 25);
  }

  

  .line {
    border: 2px solid lightsalmon;
  }