@import url(./vars.css);

@font-face {
    font-family: okami;
    src: url(../fonts/Okami.otf);
}

@font-face {
    font-family: helvetica;
    src: url(../fonts/Helvetica.ttf);
}

h2, h4 {
    color: #e63a12;
}

body {
    background-color: var(--main-color);
    margin: 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: white;
    background-image: url('../assets/img/game-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


nav {
    background: var(--main-color);
    height: 110px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav img {
    width: 8em;
}

h1 {
    color: #e63a12;
    text-shadow: 4px 5px #fff;
    text-transform: uppercase;
    font-size: 4.5em;
    font-weight: 900;
    text-align: center;
    padding-top: 10vh;
}

.admin-nav {
    background: #b1aec6;
    height: 80px;
    font-family: helvetica;
}

h2 {
    text-transform: uppercase;
    font-size: 2.8em;
    font-weight: 900;
    text-align: center;
    margin-top: 10vh;
    margin-bottom: 0;
}

h3 {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 2.5em;
    font-weight: 900;
    text-align: center;
    margin: 0 auto;
}

.hero {
    background-image: url(../assets/img/halloween-background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

.hero2 {
    background-image: url(../assets/img/halloween-background2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 90vh;

}

.hero img {
    margin-top: 10vh;
    margin-bottom: 10vh;
    width: 25vw;
}


.play-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background-color: #fff;
    color: red;
    border-radius: 100px;
    text-decoration: none;
    font-size: 2.5em;
    padding: 0.3em 1.2em;
    margin-bottom: 10vh;
    text-transform: uppercase;
    font-weight: 800;
    transition: all .4s ease-in-out;
}

.small-button {
    background-color: #fff;
    color: var(--secondary-color);
    border-radius: 100px;
    text-decoration: none;
    font-family: okami;
    font-size: 1.5em;
    padding: 0.3em 1.2em;
    text-transform: uppercase;
    font-weight: 600;
    transition: all .4s ease-in-out;
    border: none;
    margin-top: 0.5em;
}

.play-button:hover, .small-button:hover {
    background: linear-gradient(to right, #1b2d70, #FFD100, #f7a70c);
    color: white;
    background-size: 350% 100%;
    background-position: 100% 0;
}

.howto {
    padding-bottom: 10vh;
    font-family: okami, sans-serif;
}

.cards-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 60vw;
    margin: 0 auto;
    padding: 10vh 0 20vh 0;
}

.howto .card {
    background-color: var(--main-color);
    /*background: radial-gradient(circle, rgba(27,45,112,1) 0%, rgba(31,32,64,1) 100%);*/
    /*box-shadow: rgba(22, 22, 41, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;*/
    color: var(--light);

    font-weight: 300;
    border-radius: 10px;
    padding:  4em 2.3em;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    transition: all .4s ease-in-out;
    margin: 0 auto;
}

.howto .card p {
    max-width: 80%;
    font-size: 1.1em;
    margin: 0 auto;
}
/*
.howto .card:hover{
    transform: scale(1.2) rotate(-0.02turn);

}

.howto .no-anim:hover{
    transform: none;

}
*/

.howto .card .number {
    color: var(--secondary-color);
    text-shadow: 2px 2px red;
    border-radius: 100px;
    font-family: okami;
    font-weight: 800;
    font-size: 2em;
    width: 60px;
    height: 60px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin: 0;
}

.card-bg {
    background-size: contain;
    background-position: center;
    background-position-y: 30px;
    background-repeat: no-repeat;
}

footer {
    background-color: var(--main-color);
    color:var(--white);
    padding: 1em 0;
}

footer .container {
    margin:auto;
}

footer .container .row {
    display: flex;
    flex-wrap: wrap;
    justify-self: center;
    align-items: center;
    justify-content: center;

}

.footer-col {
    width: 25%;
    padding: 0 15px;
}

.footer-col h4 {
    font-size: 18px;
    color: var(--white);
    text-transform: uppercase;
    margin-top: 0;
    font-weight: 800;
    position: relative;
}

.footer-col a {
    font-size: 16px;
    color: var(--white);
    text-decoration: none;
    font-weight: 300;
    display: block;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
    transform: scale(1.2);
}

.footer-col .social-links a {
    display: inline-block;
    font-size: 2em;
    height: 50px;
    width: 50px;
    background-color: rgba(255,255,255,0.2);
    margin:0 10px 10px 0;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    color: var(--white);
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
    color: var(--dark);
    background-color: var(--white);
    -webkit-transform:scale(0.8);
    -moz-transform:scale(0.8);
    -ms-transform:scale(0.8);
    transform:scale(0.8);
}


@keyframes fadeInUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

.fadeInUp-animation {
    animation: 1.5s fadeInUp;
}

#confetti-canvas {
    position: fixed; 
    z-index: 999; 
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh; 
    pointer-events: none;
}

form {
    text-align: left;
}

.text-input {
    border: solid 1px rgb(162, 183, 204);
    padding: 0.5em;
    margin: 0.2em 0;
    border-radius: 5px;
}

.yeah {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.modal h1, .modal h2 {
    color: #1d1d1d;
    font-size: 1.5em;
    text-shadow: none;
    text-align: left;
}

.modal h2 {
    color: #1d1d1d;
    font-size: 1em;
    text-align: left;
}

.modal-body {
    text-align: left;
    color: black;
}

.step {
    background-color: #e63a12;
    padding: 5px;
    margin-bottom: 40px;
    border-radius: 5px;
    height: 150px;
}

.number {
    font-size: 25px;
    font-weight: bold;
}

.s-text {
    font-weight: bold;
}

.f-link {
    margin-right: 15px;
    color: #fff;
}