.e {
    display: none;
    float: right;
    padding: 2%;
    background-color: rgb(20, 20, 20);
    width: 10%;
    height: 10%;
  }
  
  .e:hover {
    transition: all ease 1.5s;
    width: 30%;
    height: 30%;
  }
  
  .t {
    text-align: justify;
    background-color: rgb(20, 20, 20);
  }
  
  html {
    transition: ease all 0.6s;
    background-color: rgb(20, 20, 20);
    color: white;
  }
  
  html:hover {
    transition: ease all 0.6s;
    background-color: black;
  }
  
  html:hover .t {
    transition: ease all 0.6s;
    background-color: black;
    color: white;
  }
  
  html:hover .e {
    display: block;
    transition: ease all 1s;
    background-color: black;
    color: white;
  }
  