* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    font-size: 30px;
    line-height: 1.4;
    background: #222;
    color: #EEE;
    /* font-family: "Noto Serif", serif; */
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-variation-settings:
    "wdth" 100;


}

a {
    color: lime;
    text-decoration: none;
    border-bottom: 1px solid lime;
    transition: all 0.3s ease;
    display: inline-block;
    line-height: 1.1;
}

a:hover {
    opacity: 1;
    border-bottom: 1px solid transparent;
    transform: rotate(2deg);
}

.message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
