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

:root {
    /* background: #ecf5ff; */
    font-size: 62.5%;
}

/* html, body {
    width: 100%;
    height: 100%;
} */

#board-menu {
    background-image: url('../images/background-menu@3x.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* width: 100vw; */
    /* height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100vw;
    margin: 0 auto;
    padding: 2rem;
}

* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

h1, h2, h3, h4 {
    margin-bottom: 1rem;
}

h1 {
    font-size: 5.4rem;
    color: #56a5eb;
    margin-bottom: 5rem;
    text-align: center
}

h1#logo {
    font-family: 'Pacifico', cursive;
}

h1 > span {
    font-size: 2.4rem;
    font-weight: 500;
}

h2 {
    font-size: 3.2rem;
    margin-bottom: 4rem;
    font-weight: 700;
}

h3 {
    font-size: 2.8rem;
    font-weight: 500;
}

p {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* UTILITIES */
.container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 90%;
    margin: 0 auto;
    padding: 2rem;
}

.container > * {
    width: 100%;
}

#home h1 {
    font-size: 8.8rem;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

#developers {
    justify-content: center;
    align-items: center;
}

#developers p {
    color: #333;
    text-align: center
}

#developers a {
    text-decoration: none;
}

#developers p:hover {
    text-decoration: none;
    cursor: pointer;
    transform: translateY(-0.3rem);
    transition: transform 150ms;
}

/* ROBOT */
/* img.cute-robot {
    display: flex;
    width: 450px;
    padding: 20px 20px 0 20px;
    margin: 50px 100px 0 50px;
} */

/* BUTTONS */
.btn {
    font-size: 2.8rem;
    padding: 1.5rem 0;
    width: 20rem;
    text-align: center;
    border: 0.1rem solid #56a5eb;
    margin-bottom: 1rem;
    text-decoration: none;
    color: #56a5eb;
    background-color: white;
}

#developers .btn {
    font-size: 1.8rem;
    padding: 1.2rem 0;
    width: 15rem;
    margin-top: 4rem;
}

.btn:hover {
    cursor: pointer;
    box-shadow: 0 0.4rem 1.4rem 0 rgba(86, 185, 235, 0.5);
    transform: translateY(-0.1rem);
    transition: transform 150ms;
}

.btn[disabled]:hover {
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* FORMS */
form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

input {
    margin-bottom: 1rem;
    width: 20rem;
    padding: 1.5rem;
    font-size: 2.5rem;
    border: none;
    box-shadow: 0 0.1rem 1.4rem 0 rgba(86, 185, 235, 0.5);
}

input::placeholder {
    color: #aaa;
}

#level {
    width: 100vw;
    height: 100vh;
    display: block;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    padding: 2rem;
}

#selectedGameLevel {
    margin: 1rem;
}

#history-div {
    align-items: center;
}

#history-div p {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
#history-img {
    width: 60%;
}

#removeGameHidden {
    margin-top: 1rem;
}

.hidden {
    display: none !important;
}

/* @media screen and (max-width: 1000px) {
    .container {
        display: flex;
        flex-direction: column;
    }
} */