﻿@import url(https://fonts.googleapis.com/css?family=Raleway);

body {
}


.box {
    font-weight: 200;
    margin: 0px;
    padding: 0px;
    width: 210px;
    height: 60px;
    /*background-color:#808080;*/
    border-radius: 80px;
    /*/* box shadow  here*/
    box-shadow: 0 10px 15px rgba(0,0,0,0.5);
    transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

    .box:hover {
        transform: scale(1.1);
        box-shadow: 0 3px 20px rgba(0,0,0,0.5);
        cursor: pointer;
        transform: translate(0px, -10px);
    }
