* {
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
    color: #757575;
}

html,body {
    padding: 0;
    margin: 0;
}

body {
    background-image: url("../../assets/layout/background-pattern/escheresque.png");
    background-repeat: repeat;
    background-attachment: fixed;
}

h1 {
    display: none;
}

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

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

.hidden {
    display: none;
}

.text-linked {
    color: white;
    cursor: pointer;
    text-decoration: none;
}

.green {
    color: rgb(135, 189, 40);
}

.yellow {
    color: rgb(255, 155, 0);
}

.red {
    color: rgb(218, 0, 0);
}

.white {
    color: white;
}

.textbox {
    height: 40px;
    width: 100%;
    font-size: 22px;
    text-align: center;
    float: left;
    margin-top: 15px;
    background-color: rgba(255, 255, 255, .4);
    border: none;
    transition: all 0.15s linear 0s;
}

::-webkit-input-placeholder { color: rgb(200, 200, 200); }
::-moz-placeholder { color: rgb(200, 200, 200); }
:-ms-input-placeholder { color: rgb(200, 200, 200); }
:-moz-placeholder { color: rgb(200, 200, 200); }

.button {
    width: 50%;
    height: 40px;
    margin-top: 15px;
    background: rgba(134, 188, 36, 1);
    cursor: pointer;
    transition: all 0.2s ease-out 0s;
    color: white;
    font-weight: bold;
    border: none;
    padding: 0;
}
.button:hover {
    background-color: rgba(51, 51, 51, 1);
}

.checkbox {
    font-size: 22px;
    width: 100%;
    padding-top: 10px;
}

#scrollup {
    width: 50px;
    height: 50px;
    background-color: rgba(97, 97, 97, .8);
    position: fixed;
    bottom: 25px;
    right: 25px;
}
#scrollup i {
    font-size: 1.7rem;
}