/* Path: style.css */



/* center everything, make it a nice bold dark theme, mobile friendly, playful font, small bold text */
body {
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: 'Bungee';
    font-size: 1.2em;
    text-align: center;
    margin: 0;
    padding: 0;
}

.dark-mode{
 background-color: rgb(219, 219, 219);
 color: #000000;
}

.page-body {
    margin: 0 15px 0 15px;
}

.thema {
    background-color:#7892c2;
	border-radius:42px;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-weight:bold;
	text-decoration:none;
}

.row {
    justify-content: center;
    display: flex;
    /* flex-wrap: wrap; */
    margin: auto;
    padding: auto;
}
.mg_auto {
    margin: auto;
}

/* Create two equal columns that sits next to each other */
/* .column {
  flex: 50%;
} */

/* .column img {
  vertical-align: middle;
  max-width:100%;
  max-height:100%;
} */

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

.inputbox{
  max-width: 500px;
  width: 100%;
  height: 100%;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  text-align: center;

  /* position: absolute; */
	opacity: 1;
	padding: 12px 16px;
	color: #BBBBBB;
	border-radius: 8px;
	border: solid 2px;
	border-color: #EEEEEE;
	background-color: rgba(0, 0, 0, 0.25);
	/* -webkit-transition: border-width 0.25s, border-color 0.25s, background-color 0.5s, right 1s, opacity 1s;
	transition: border-width 0.25s, border-color 0.25s, background-color 0.5s, right 1s, opacity 1s; */
}

.inputbox::-webkit-input-placeholder {
    font-size: 14px;
    line-height: 4;
}

.share {
    visibility: hidden;
}

/* Create a stylized button */
.btn {
  background-color: #fff;
  color: #0c0c01;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 20px;
}

.line {
    display: grid;
    justify-content: center;
    justify-items: stretch;
}

.lines {
    border:solid 2px;
    padding: 15px;
}

.sharebtn {
    background-color: green;
    color: #fff;
}

.rules {
    font-size: 700px;
}

.image img{
    width: 100%;
    max-width: 200px;
    vertical-align: middle;
}

.WhatsGame {
  display: grid;
}




   /* ............/navbar/............ *

/* desktop mode............/// */

.navbar input[type="checkbox"],
.navbar .hamburger-lines{
  display: none;
}


.navbar {

    background: rgba(51, 51, 51, 0.4);
    border-bottom: 8px #444444 solid;
    width: 100%;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    /* box-shadow: 0 2px 2px #c4c4c4; */
}

.navbar-container {
  display: flex;
  justify-content: space-around;
  height: 40px;
  align-items: center;
}

.menu-items {
  order: 2;
  display: flex;
}

.menu-items li {
  list-style: none;
  margin-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.menu-items a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.menu-items a:hover {
  color: #117964;
  transition: color 0.3s ease-in-out;
}

.logo {
  order: 1;
  font-size: 2.3rem;
  margin-bottom: 0.5rem;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  /* display: contents; */
}




/* ......../ media query /.......... */

@media (max-width: 768px) {
  .navbar {
    opacity: 0.95;
  }

  .navbar-container input[type="checkbox"],
  .navbar-container .hamburger-lines {
    display: block;
  }

  .navbar-container {
    display: block;
    position: relative;
    height: 30px;
  }

  .navbar-container input[type="checkbox"] {
    position: absolute;
    display: block;
    height: 32px;
    width: 30px;
    top: 5px;
    left: 20px;
    z-index: 5;
    opacity: 0;
  }

  .navbar-container .hamburger-lines {
    display: block;
    height: 23px;
    width: 35px;
    position: absolute;
    top: 5px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .navbar-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: rgb(255, 255, 255);
  }

  .navbar-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
  }

  .navbar-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .navbar-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }

  .navbar .menu-items {
    padding-top: 100px;
    margin-top: 0px;
    background: #444444;
    height: 100vh;
    max-width: 300px;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -40px;
    padding-left: 50px;
    transition: transform 0.5s ease-in-out;
    box-shadow: 5px 0px 10px 0px #aaa;
  }

  .navbar .menu-items li {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 500;
  }

  .logo {
    position: absolute;
    top: 0px;
    right: 15px;
    font-size: 1.7rem;
  }
  

  .navbar-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(35deg);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-35deg);
  }
}

@media (max-width: 500px) {
  html {
    font-size: 65%;
  }

  .navbar .menu-items li{
      font-size: 1.6rem;
  }

  .logo {
    position: absolute;
    top: 0px;
    right: 15px;
    font-size: 2rem;
  }

  .navbar .menu-items li {
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    font-weight: 500;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .img-container h3 {
    font-size: 1.5rem;
  }

  .img-container .btn {
    font-size: 0.7rem;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  .showcase-area {
    height: 50vmax;
  }
}

.aboutme {
  border: solid 2px #117964;
  max-height: 200px;
  display: table;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 10px; margin: 10px;
}
.aboutme p {
  font-size: 18px;
}
.aboutme h3 {
  font-size: 24px;
}
.aboutme a {
  font-size: 20px;
}