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

@font-face {
    font-family: "Redslit";
    src: url("fonts/redslit-webfont.woff2") format("woff2"),
    url("fonts/redslit-webfont.woff") format("woff")
}

.navbar-button {
    color: white;
    text-decoration: none;
    transition: 0.2s;
    text-align: center;
    margin-left: 10px;
    text-shadow: 0 0 5pt #000000;
    font-size: 14pt;
    background-color: rgba(42, 42, 42, 0.4);
    padding: 10px;
    border-radius: 15px;
    border: 5px;
    
}

.navbar-button:hover {
    color: #3e9cc5;
    transition: 0.2s;
}

.navbar-container{
    width: auto;
    display: flex;
    gap: 10px;
    @media (max-width: 650px) {
        /*<=650px*/
        flex-direction: row;
    }
}

header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    @media (max-width: 650px) {
        /*<=650px*/
        display: flex;
        flex-direction: column;
        justify-content: left;
    }
    
}

.snowlabs-small {
    user-select: none;
    color: white;
    text-align: center;
    font-family: 'Redslit', serif;
    
    font-weight: 400;
    text-shadow: 0 0 5pt #000000;
    /*padding-top: 25px;*/
    padding-left: 25px;
    text-decoration: none;
    transition: 0.2s;

    @media (max-width: 650px) {
        /*<=650px*/
        font-size: 10vmax;
        display: flex; 
        justify-content: center;
        line-height: 80px;
        padding-top: 25px;
    }

    @media (min-width: 650px) {
        position:relative;
        font-size: 32pt;
    }
}

.snowlabs-small:hover {
    user-select: none;
    color: #3e9cc5;
    transition: 0.2s;
}

.snowlabs {
    user-select: none;
    color: white;
    text-align: center;
    font-family: 'Redslit', serif;
    font-size: 10vmax;
    font-weight: 400;
    text-shadow: 0vmax 0vmax 0.5vmax #000000;
    position: relative;
    padding-top: 25px;
    text-decoration: none;
    transition: 0.2s;
}

.footer {
    user-select: none;
    background-color: #2a2a2acf;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    height: 20px;
    transition: 0.2s;

    color: white;
    text-align: end;
    padding-right: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}