body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #2a2a2a;
    color: wheat;
}

a {
    color: inherit;
    text-decoration: none;
}

.box {
    display: flex;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    user-select: none;
}

.box > .img {
    width: 200px;
    -webkit-user-drag: none;
}

.box > .label {
    letter-spacing: 1px;
    transition: all ease 200ms;
}

.box > .label:hover {
    letter-spacing: normal;
}