@font-face {
    font-family: shekasteh;
    src: url("Dima Shekasteh.ttf");
}

html {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 0;
    margin: 0;

}
body {
    box-sizing: border-box;
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: #3a3a3a;
}

button {
    background: none;
    border: none;
    box-sizing: border-box;
    width: fit-content;
    height: fit-content;
    position: absolute;
    top: 50%;
    left: 50%;
    color: white;
    font-family: "shekasteh";
    font-size: 11em;
    line-height: 0.4em;
    padding: 50px 5px 0;
    margin: 0;
    overflow: hidden;
    transition-property: left, top;
    transition-duration: 100ms;
    transition-timing-function: ease-out;
}

button:hover {
    color:red;
    cursor: pointer;
}