@import url("https://fonts.googleapis.com/css?family=Londrina+Solid");
@import "pm.css";
@import "game.css";
@import "menu.css";

/* Variables */

:root {
    --primary: #00ff66;
    --danger: #ff0066;
    --secondary: #172b4a;
    --responsive: min(1vh, 1vw);
}

/* Elements */

html,
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    font-size: calc(4 * var(--responsive));
    font-family: "Londrina Solid";
    -webkit-user-select: none;
    user-select: none;
    color: #fff;
}

a {
    color: var(--primary);
    text-decoration: none;
}

input,
button,
textarea,
select {
    font: inherit;
}

input[type="checkbox"] {
    transform: scale(1.5);
}

label {
    margin: 0 0.5rem;
}

h1,
h2 {
    font-weight: normal;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-size: 4rem;
}

h2 {
    font-size: 2rem;
}

/* Util Classes */

.small {
    font-size: 75%;
}

.text-muted {
    opacity: 0.5;
}

.btn {
    font: inherit;
    font-size: 2rem;
    border: none;
    display: inline-block;
    color: var(--secondary);
    background: var(--primary);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
}

.hidden {
    display: none;
}

.inactive {
    opacity: 0.35;
}

.layout {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    text-align: center;
}

.layout-center {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

ul.actions {
    padding: 0;
    margin: 1rem 0;
    font-size: 3rem;
    list-style: none;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--secondary);
}

ul.actions li {
    margin: 0;
    padding: 0;
}

ul.actions a:hover {
    color: var(--danger);
    text-shadow: 0 0 10px var(--danger);
}

.menu-bg {
    background-size: cover;
    background-position: center;
    background-image: url(../res/images/menubackground.jpg);
}
