.button {
    display: inline-flex;
    height: 40px;
    width: 200px;
    border: 2px solid #BFC0C0;
    margin: 10px 20px 10px 20px;
    color: #BFC0C0;
    text-transform: uppercase;
    text-decoration: none;
    font-size: .8em;
    letter-spacing: 1.5px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    float: center;
  }
  a {
    color: #BFC0C0;
    text-decoration: none;
    letter-spacing: 1px;
  }
  #kochbuch {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  
  #kochbuch a {
    position: relative;
    transition: all .45s ease-Out;
  }
  #hinzufuegen {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  
  #hinzufuegen a {
    position: relative;
    transition: all .45s ease-Out;
  }
  #bestätigen {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  
  #bestätigen a {
    position: relative;
    transition: all .45s ease-Out;
  }
  .spin {
    width: 0;
    height: 0;
    opacity: 0;
    left: 70px;
    top: 20px;
    transform: rotate(0deg);
    background: none;
    position: absolute;
    transition: all .5s ease-Out;
  }
  
  #hinzufuegen:hover .spin {
    width: 200%;
    height: 500%;
    opacity: 1;
    left: -70px;
    top: -70px;
    background: #BFC0C0;
    transform: rotate(80deg);
  }
  
  #hinzufuegen:hover a {
    color: #2D3142;
  }
  #kochbuch:hover .spin {
    width: 200%;
    height: 500%;
    opacity: 1;
    left: -70px;
    top: -70px;
    background: #BFC0C0;
    transform: rotate(80deg);
  }
  
  #kochbuch:hover a {
    color: #2D3142;
  }
  #bestätigen:hover .spin {
    width: 200%;
    height: 500%;
    opacity: 1;
    left: -70px;
    top: -70px;
    background: #BFC0C0;
    transform: rotate(80deg);
  }
  
  #bestätigen:hover a {
    color: #2D3142;
  }
  #rezepte {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 40px;
  }
  
  #rezepte a {
    position: relative;
    transition: all .45s ease-Out;
  }
  #rezepte:hover .spin {
    width: 200%;
    height: 500%;
    opacity: 1;
    left: -70px;
    top: -70px;
    background: #BFC0C0;
    transform: rotate(80deg);
  }
  
  #rezepte:hover a {
    color: #2D3142;
  }
  #home {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  
  #home a {
    position: relative;
    transition: all .45s ease-Out;
  }
  #home:hover .spin {
    width: 200%;
    height: 500%;
    opacity: 1;
    left: -70px;
    top: -70px;
    background: #BFC0C0;
    transform: rotate(80deg);
  }
  
  #home:hover a {
    color: #2D3142;
  }
  
  *,
  *::after,
  *::before {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
    font-size: 62,5%;
  }