html {
    font-family: "MS UI Gothic", Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: white;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.landing {
    background-color: var(--dark-grey);
    border: 2px solid white;
    position: fixed;
    inset: 0px;
    width: 320px;
    height: 180px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-text {
    color: var(--light-grey);
    position: absolute;
    right: 1rem;
    top: 1rem;   
    max-height: 1rem; 
    text-align: right;
    justify-content: right;
    align-items: center;
    display: flex;
}

.bottom-text {
    color: white;
    position: absolute;
    left: 1rem;
    bottom: 1rem;   
    max-height: 1rem; 
    text-align: left;
    justify-content: left;
    align-items: center;
    display: flex;
}

#welcome-image {
    position: fixed;
    transform:
        translateX(-91px)
        translateY(-100px);
}

#enter-image {
    transition: transform 0.1s ease;
}

#enter-image:hover {
    content: url(../media/enter2.png);
    transform: scale(1.1);
}
