* {
    box-sizing: border-box;
  }
  
  body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 0;
    margin: 0;
    background: #f5f5f5;
  }
  
  :root {
    font-family: "Roboto Slab", serif;
  }
  
  a {
    display: block;
    position: absolute;
    line-height: 10em;
    left: 20%;
    width: 100%;
    height: 100%;
    padding: 0 2em;
    text-decoration: none;
    color: #696969;
    transition: 0.3s;
  }
  
  div {
    position: relative;
    display: flex;
    align-items: center;
    height: 10em;
    width: 30%;
    min-width: 25em;
    margin-top: 1em;
    border: 1px solid #696969;
    transition: 0.3s;
  }
  
  div:hover {
    background: #909090;
    color: white;
    cursor: pointer;
  }
  
  div:hover a {
    color: white;
  }
  
  i {
    padding-right: 2rem;
    font-size: 2em;
  }
  