*{
    padding: 0;
    margin: 0;
}
body{
    color:#fff;
    background-color:  #e0e5ec;
    font-family: "Tahoma",ubuntu,"Helvetica Neue",Helvetica,Arial,sans-serif;
}
h1, h2{
    position: relative;
    text-align: center;
    color: #353535;
    font-family: "Cormorant Garamond", serif;
}


.container{
 max-width: 980px;
 padding: 10px;
 margin: 0 auto;
}  

.container p{
    padding: 8px 0;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    text-align: center;
    font-size: 18px;
    color: #676767;
}

.button{
    max-width: 980px;
    margin: 40px auto;
    text-align: center;
}

ul li{
    display: inline-block; 
    margin: 16px;
}

li a{
    text-decoration: none;
    width: 160px;
    height: 20px;
    color: #fff;
    border-radius: 5px;
    padding: 10px 0px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
     box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
     7px 7px 20px 0px rgba(0,0,0,.1),
     4px 4px 5px 0px rgba(0,0,0,.1);
    outline: none;
    font-size: 10;
    align-items: center;
    border: none;
    color: #000;
}
li a:after{
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    direction: rtl;
    z-index: -1;
    box-shadow:
     -7px -7px 20px 0px #fff9,
     -4px -4px 5px 0px #fff9,
     7px 7px 20px 0px #0002,
     4px 4px 5px 0px #0001;
    transition: all 0.3s ease;
}

li a:hover {
    color: #000;
  }

li a:hover:after {
    left: auto;
    right: 0;
    width: 100%;
}

li a:active {
    top: 2px;
  }

  ul li:after
{
        position: absolute;
        content: "";
        width: 0;
        height: 100%;
        top: 0;
        left: 0;
        direction: rtl;
        z-index: -1;
        box-shadow:
         -7px -7px 20px 0px #fff9,
         -4px -4px 5px 0px #fff9,
         7px 7px 20px 0px #0002,
         4px 4px 5px 0px #0001;
        transition: all 0.3s ease;
}

