@import url("https://use.typekit.net/mwl4krd.css");
* {
    margin: 0;
    padding: 0;
}
body {
    font-family: brandon-grotesque, sans-serif;
    font-weight: 700;
    font-style: normal;
}

.btn {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
button {
    background: #0c1822;
    color: #fff;
    font-size: 1.8rem;
    height: 100px;
    width: 250px;
    line-height: 60px;
    margin: 25px 25px;
    text-align: center;
    border: 0;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    box-shadow: 0 8px 6px -6px black;
}
button:hover {
    background: #05090e;
    font-size: 1.9rem;
}
button:focus {
    outline: none;
}