@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300&display=swap');

* {
    text-decoration: none;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #333a3c;
}


/*                                                                                NAVIGATION BAR START                                                         */


.navbar {
    background-color: #181818;
    display: flex;
    justify-content: space-between;
    align-content: center;
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 94.%;
}

.nav_links {
    list-style: none;
    display: flex;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 500px;
    font-size: 20px;
    text-decoration: none;
}

.nav_item .nav_links {
    display: inline-block;
}

.nav_links li a {
    transition: all 0.3s ease 0s;
    margin: 70px;
    color: #d03035;
}

.nav_links li a:hover {
    color: #F2F4F3;
}

#logo {
    width: 25vem;
    height: 50px;
}


/*                                                                                NAVIGATION BAR END                                                         */

.intro {
    display: flex;
    order: initial;
    color: whitesmoke;

}

.join h1 {
    font-family: 'Bebas Neue', cursive;
    margin-left: 200px;
    font-size: 50px;
}

.join h3 {
    font-family: 'Rajdhani', sans-serif;
    text-emphasis: none;
    text-decoration: none;
    line-height: 45px;
    text-align: center;
}

.vid {
    margin-top: 100px;
    padding: 20px;
}

#riot {
    margin-left: 40%;
}







.bottom {
    background: rgb(228, 125, 94);
    min-height: 10rem;
    padding: 1rem;
    width: 100%;
    left: 0;
    right: 0;
    position: absolute;
}

.signup h1 {
    font-family: 'Bebas Neue', cursive;
    color: #22333B;
    text-align: center;
}

.signup h2,
p {
    font-family: 'PT Sans', sans-serif;
    color: #22333B;
    text-align: center;
}


.clearfix button {

    color: white;
    padding: 14px 20px;
    margin: 8px 0px;
    border: none;
    cursor: pointer;
    width: 40%;
    height: 60px;
    opacity: 0.9;

}

.clearfix {
    display: block;
    order: initial;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: 100px;
}

.signupbtn {
    background-color: #207e0a;

}

hr {
    border: 1px solid #f1f1f1;
    margin-bottom: 25px;
}

.cancelbtn {
    padding: 14px 20px;
    background-color: #760d05;
}

.modal-content {
    display: flex;
    justify-content: center;
}

input[type=text],
input[type=password] {
    width: 100%;
    /*      IDEA: use Javascript to give a notification if the caps lock is on                     */
    padding: 15px;
    margin: 5px 0 22px 0;
    display: inline-block;
    border: none;
    background: #f1f1f1;
    color: black;
}


/*                                                                        START  OF  AGENT  PAGE                                                       */

.agent-header {
    display: flex;
    justify-content: center;
    font-family:'Rubik Wet Paint', cursive;
    font-size: 50px;
    color: rgb(255, 255, 255);
}

.agent-row {
    display: flex;
    flex-direction: row;
    flex: wrap;
    justify-content: space-between;
    list-style: none;
}



/*                                                                          END OF  AGENT  PAGE                                                       */

/*                                                                        START  OF  MAPS PAGE                                                         */


.slideshow {
    width: 100%;
    height: 50vh;
    position: relative;
    overflow: hidden;
}

.slideshow-item {
    width: inherit;
    height: inherit;
    position: absolute;
    opacity: 0;
    animation: cycleImages 210s infinite;
    /* this is the length of the slideshow */
    transition: ease-in-out 0.1s;
}




.slideshow-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoom 8s;
    /* this is the length of the zooming feature */
}

.slideshow-item:nth-child(1),
.slideshow-item:nth-child(1) img {
    animation-delay: 0s;
}

.slideshow-item:nth-child(2),
.slideshow-item:nth-child(2) img {
    animation-delay: 10s;
}

.slideshow-item:nth-child(3),
.slideshow-item:nth-child(3) img {
    animation-delay: 20s;
}

.slideshow-item:nth-child(4),
.slideshow-item:nth-child(4) img {
    animation-delay: 30s;
}

.slideshow-item:nth-child(5),
.slideshow-item:nth-child(5) img {
    animation-delay: 40s;
}

.slideshow-item:nth-child(6),
.slideshow-item:nth-child(6) img {
    animation-delay: 50s;
}

.slideshow-item:nth-child(7),
.slideshow-item:nth-child(7) img {
    animation-delay: 60s;
}


.slideshow-item-text {
    max-width: 25%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 10rem 5rem;
    background-color: rgba(0, 0, 0, .8);
}

.slideshow-item-text h3 {
    font-size: 3rem;
    color: whitesmoke;
    font-family: 'PT Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
    text-align: center;
}

.slideshow-item-text p {
    font-size: 1rem;
    font-family: 'PT Sans', sans-serif;
    color: grey;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes cycleImages {
    3% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    40% {
        opacity: 0;

    }
}

@keyframes zoom {
    100% {
        transform: scale(1.3);
    }
}

.form {
    display: flex;
    justify-content: center;
}

#fav {
    text-align: center;
    color: whitesmoke;
}



.form label {
    color: whitesmoke;

}


#form_submit button {
    color: black;
    background: black;
}


.form input[type=submit] {
    width: 90%;
    margin-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: inline-block;
    border: none;
    background: #f1f1f1;
    color: black;
    font-size: 20px;
}


#form_submit:hover {
    cursor: pointer;
    color: #F2F4F3;
    background: #ff4655;
}



/*                                                                         START  OF  WEAPONS  PAGE                                                       */

table {
    font-family: 'Poppins', sans-serif;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    opacity: 90%;
}

#weapon {
    text-align: center;
    font-family: 'Bebas Neue', cursive;
    font-size: 10vh;
    color: whitesmoke;
}

th {
    cursor: pointer;
    font-size: 2vh;

}

td,
th {
    border: 1px solid #181818;
    text-align: center;
    padding: 15px;
    color: black;
    font-weight: bold;
}

tr:nth-child(odd) {
    background-color: #ff4655;
}

tr:nth-child(even) {
    background-color: #F2F4F3;
}


