.grid__container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 100vh;
  width: 100%;
  margin: 0;
}

.btn {
    display: inline-block;

    height: 33px;
    margin: 0;
    padding: 0 27px;
    background-color: #A9A9A9;

    color: white;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    text-decoration: none;

    vertical-align: middle;
    border: none;
    border-radius: 2px;
    overflow: hidden;
    outline: none;
    cursor: pointer;
    transition: box-shadow 0.2s $animation-curve-fast-out-linear-in,
                background-color 0.2s $animation-curve-fast-out-slow-in,
                color 0.2s $animation-curve-fast-out-slow-in;

    -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 1px 8px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 1px 8px 0 rgba(0, 0, 0, 0.12);
}

.btn:hover {background-color: #959595;}
.btn:active {background-color: #424242;}
.btn:focus:not(:active) {background-color: #A9A9A9;}

.btn.btn--reset{display: block;}

.top-right {
    display: inline-block;
    position: fixed;
    top: 10px;
    right: 10px;
}
