@import url('https://fonts.googleapis.com/css?family=Inter');

* {
    touch-action: manipulation;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    user-select: none;
    background-color: #191919;
    font-family: 'Inter', sans-serif;
    color: #CECECE;
    margin: 20px;
    padding: 0;
    padding-bottom: 25px; /* footer-size */
}

nav {
    font-size: large;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 30px;
    margin: 15px 0 15px 0;
    overflow: hidden;
}

nav > div {
    display: flex;
    column-gap: 15px;
    flex-direction: row;
}

nav .right {
    flex-direction: row-reverse;

}

/* .nav img {
    height: 50%;
    transition: all 100ms ease-out 50ms;
}

.nav img:hover {
    transform: scale(1.1);
} */

nav a {
    color: #CECECE; 
    text-decoration: none;
    transition: all 500ms ease-out 100ms;
}

nav a:hover{
    color: #c9c49f;
    text-shadow: 0px 0px 10px #c9c49f;
}

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #CECECE;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    pointer-events: none;
}

hr {
    border: 0.1px solid #CECECE;
}