@import url('https://fonts.googleapis.com/css2?family=Stack+Sans+Notch:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Funnel+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

html {
    scroll-padding-top: 200px;
    scroll-behavior: smooth;
}

body {
    padding-top: 45px;
    font-family: "Funnel Sans", sans-serif;
    color: #15150C;
    user-select: none;
    margin-bottom: 75px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    text-align: center;
    font-family: 'Stack Sans Notch', sans-serif;
    font-style: italic;
    color: #010170;
}

.gamechoice{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.gametable {
    width: 100%
}

.displayimg{
    width: 45%;
}

.displayheader{
    width: 30%;
    text-align: right;
}

.displaylink{
    text-align: center;
}

.displayinfo{
    width: 25%
}

.gameimg{
    max-width: 150px;
    max-height: 150px;
    width: auto;
    height: auto;
}

p {
    text-align: center;
}

/* Setting the background image and then changing the opacity
     such that the picture looks faded and the main content will stand out much better */
.background {
    background-image: url('../images/bg_main_photo_2.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.85);
    background-blend-mode: lighten;
}

/*** FORM ***/
.admin_panel {
    margin: 0 auto;
    width: 90%;
    height: 80%;
    background-color: #b1b1ff;
	border: 1px solid #010170;
	box-shadow: 0 1px 2px rgba(0,0,0,0.15);
	transition: all 0.3s ease-in-out;
	border-radius: 10px;
    transition: 0.3s;
}

.formObject_container {
    display:table;
    width: 80%;
    margin: 10px auto;
    padding: 0;
    text-align: center;
    color: #010170;
}

.my-label-class {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    color: #010170;
    text-align: left;
}

.txtdec {
    text-decoration: none;
    color: inherit;
}

/* form button container */
.frmBtn_container {
    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
    justify-content: center;
    width: 100%;
    padding: 10px;
}
.btn {
    justify-content: center;
    text-align: center;
    display: inline-block;
    width: 90px; /* button size */
    margin-left: 5px;
    margin-right: 5px;
    color: #010170;
    padding: 10px 0px;
    text-decoration: none;
    font-size: 14px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
    border: 2px solid #010170;
    border-radius: 5px;
}

.btn:hover {
    background-color: #010170;
    color: #ffffff;
}

input[type="submit"] {
    justify-content: center;
    text-align: center;
    display: inline-block;
    width: 90px; /* button size */
    margin-left: 5px;
    margin-right: 5px;
    color: #010170;
    padding: 10px 0px;
    text-decoration: none;
    font-size: 14px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
    border: 2px solid #010170;
    border-radius: 5px;
}

input[type="submit"]:hover {
    background-color: #010170;
    color: #ffffff;
}

table {
    text-align: left;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

.td-left {
    width: 33%;
}

.td-right {
    width: 66%;
    font-weight: bold;
}

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

.bg_desc {
    text-align: justify;
	border: 1px solid #0000FF;
    padding: 10px;
    height: 160px;
    overflow-y: scroll;
    font-family: 'Funnel Sans', cursive;
}

/* NAVBAR STYLES */
.navbar a {
    display: block;
    color: #ffffff;
    text-align: center;
    padding: 5px 5px;
    text-decoration: none;
    width: 60px;
    transition: background-color 0.3s ease-in;
    font-family: 'Oswald', sans-serif;
}

.navbar a:hover {
    color: #0000FF;
    background-color: #ffffff;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.7);
    transition: background-color 0.3s ease-in;
}

.navbar ul {
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.navbar li{
    float: left;
}


.navbar > li {
  position: relative;
}

.navbar {
    background-color: #0000FF;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
}

/* Dropdown */
.dropdown{
  position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #0000ff;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    z-index: 1000;
    top: 100%;
    left: 0;
    border-radius: 0 0 6px 6px;
}
.dropdown-content a {
    display: block;
    text-align: left;
    padding: 6px 6px;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.2s ease;
}

.dropdown-content a:hover {
    background-color: #fff;
}

/* Hover trigger */
.dropdown:hover .dropdown-content {
    display: block;
    color: #000
    background-color: #ffffff;
}


/* FORM STYLES */
form {
    font-family: "Funnel Sans", sans-serif;
    margin: 0 auto;
}

/* TABLE STYLES */
table {
    border-collapse: collapse;
    width: 80%;
    margin: 0 auto;
}

table tr, th{    
    font-family: 'Raleway', sans-serif;
    text-align: left;
    font-size: small;
}

/* FOOTER STYLES */
footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #0000FF;
    color: #ffffff;
    text-align: center;
    vertical-align: middle;
    font-family: 'Oswald', sans-serif;
}

footer a {
    text-decoration: none;
    color: #ff0000;
}

footer img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

/* GOOGLE MAP STYLES */
.map_display {
    display: block;
    margin: 0 auto;
    margin-bottom: 30px;
    width: 95%;
    height: 400px;
}