img.ae_logo { 
  width: 96px;
  height: 96px;
}

.dev_warning {
  text-align: center;
  font-size: 4em;
}

a.ae_logo {
  width: 10%;
  height: 96px;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
  margin-right: 5px;
  margin-left: 10px;
  margin-top: 10px;
  margin-bottom: 10px;

  display: flex;
  float: left;
}

#language_link {
  display: flex;
  width: 96px;
  height: 48px;
  margin-right: 10px;
}

#language_img {
  object-fit: contain;
}

.nav_part {
  display: flex;
  width: 100%;
  height: auto;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: left;
  text-align: left;
}

/* Links inside the navbar */
.navbar .link_a {
  font-size: 22px;

  vertical-align: middle;
  color: black;
  text-align: center;
  padding: 14px 30px;
  text-decoration: none;

  display: flex;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 22px;

  border: none;
  outline: none;
  color: black;
  padding: 14px 30px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */

  display: flex;
}

/* Navbar container */
.navbar {
  overflow: hidden;
  /* background-color: #333; */
  background-color: #EEEEFF99;

  width: 100%; margin: auto;

  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

body {
  font-family: Arial;
  margin: 0px;

  /* SCROLLBAR STYLE FOR FIREFOX */
  scrollbar-width: thin;
  scrollbar-color: #666 #AAA;

  /*background-image: url("../src/banner.png");
  background-size: auto 100%;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-origin: border-box;*/
}

img {
  pointer-events: none;
  user-select: none;
}

/* The dropdown container */
.dropdown {
  display: block;
  vertical-align: middle;
  overflow: hidden;
}

/* Add a red background color to navbar links on hover */
.navbar a:not(.ae_logo):not(#language_link):hover, .dropdown:hover .dropbtn {
  background-color: red;
  color: white;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  width: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
  color: #fff;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-device-aspect-ratio: 16/9) {

  .banner {
    height: 100%;
  }

}

.banner {
  position: fixed;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;

  z-index: -1;
}

.content {
  min-height: 800px;
  margin: 1%;
  padding: 10px;
  background-color: #EEEEFF99;
}

footer {
  padding-bottom: 20px;
  display: flex;
  height: auto;
  width: 100%;
  vertical-align: bottom;
  /* background-color: #222; */
  background-color: #EEEEFF99;
}

.contact_info {
  position: relative;
  display: block;
  margin-top: 5%;
  width: auto;
  padding: 0 10%;
}

.playgrounds {
  position: relative;
  display: block;
  margin-top: 5%;
  width: auto;
  padding: 0 10%;
}

.social_media_container {
  position: relative;
  display: block;
  margin-top: 5%;
  width: auto;
  padding: 0 10%;
}

.social_media {
  position: relative;
  display: flex;
  width: auto;
}

.footer_containers {
  position: relative;
  display: flex;
  width: 33.3%;
  justify-content: center;
}

.info {
  height: auto;
  font-size: 20px;
  /* color: #f9f9f9; */
  color: black;
}

a.info {
  color: #6666DD;
  text-decoration: none;
}

a.info:hover {
  color: #7777ff;
  text-decoration: underline;
}

.social_icon {
  width: 64px;
  height: 64px;
  margin-right: 25px;
}

.social_a {
  height: 100%;
  font-size: 20px;
  color: #f9f9f9;
  display: inline-block;
  vertical-align: middle;
}

.social_div {
  vertical-align: middle;
}

.google_play_icon {
  width: 166px;
  height: 64px;
}

.steam_icon {
  margin-left: 20px;
  width: 64px;
  height: 64px;
}

/* SCROLLBAR STYLE */
body::-webkit-scrollbar {
  width: 10px;               /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: #AAA;        /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: #666;    /* color of the scroll thumb */
  border-radius: 20px;       /* roundness of the scroll thumb */
  border: 3px solid #AAA;  /* creates padding around scroll thumb */
}


/* MEDIA */

@media (max-width: 1100px) {

  img.ae_logo {
    width: 64px;
    height: 64px;
  }

  a.ae_logo {
    width: 10%;
    height: 64px;
  }

  #language_link {
    width: 64px;
    height: 32px;
  }

  .info {
    font-size: 14px;
  }

  .social_icon {
    width: 48px;
    height: 48px;
    margin-right: 15px;
  }

  .social_div {
    vertical-align: middle;
  }

  .google_play_icon {
    width: 125px;
    height: 48px;
  }

  .steam_icon {
    margin-left: 10px;
    width: 48px;
    height: 48px;
  }

  /* Links inside the navbar */
  .navbar .link_a {
    font-size: 16px;
    padding: 14px 20px;
  }

  /* Dropdown button */
  .dropdown .dropbtn {
    font-size: 16px;
    padding: 14px 20px;
  }

  .dropdown-content a {
    font-size: 14px;
    padding: 10px 16px;
  }
}

@media (max-width: 800px) {

  img.ae_logo {
    width: 40px;
    height: 40px;
  }

  a.ae_logo {
    width: 10%;
    height: 40px;
  }

  #language_link {
    width: 56px;
    height: 28px;
  }

  .info {
    font-size: 14px;
  }

  .social_icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
  }

  .social_div {
    vertical-align: middle;
  }

  .google_play_icon {
    width: 83px;
    height: 32px;
  }

  .steam_icon {
    margin-left: 7px;
    width: 32px;
    height: 32px;
  }

  /* Links inside the navbar */
  .navbar .link_a {
    font-size: 14px;
    padding: 14px 10px;
  }

  /* Dropdown button */
  .dropdown .dropbtn {
    font-size: 14px;
    padding: 14px 10px;
  }

  .dropdown-content a {
    font-size: 12px;
    padding: 8px 16px;
  }
}

@media (max-width: 600px) {

  img.ae_logo {
    width: 32px;
    height: 32px;
  }

  a.ae_logo {
    width: 5%;
    height: 32px;
  }

  #language_link {
    width: 32px;
    height: 16px;
  }

  .info {
    font-size: 10px;
  }

  .social_icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
  }

  .social_div {
    vertical-align: middle;
  }

  .google_play_icon {
    width: 83px;
    height: 32px;
  }

  .steam_icon {
    margin-left: 7px;
    width: 32px;
    height: 32px;
  }

  /* Links inside the navbar */
  .navbar .link_a {
    font-size: 10px;
    padding: 14px 7px;
  }

  /* Dropdown button */
  .dropdown .dropbtn {
    font-size: 10px;
    padding: 14px 7px;
  }

  .dropdown-content a {
    font-size: 9px;
    padding: 8px 16px;
  }
}

@media (max-width: 450px) {

  img.ae_logo {
    width: 32px;
    height: 32px;
  }

  a.ae_logo {
    width: 5%;
    height: 32px;
  }

  #language_link {
    width: 32px;
    height: 16px;
  }

  .info {
    font-size: 10px;
  }

  .social_icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
  }

  .social_div {
    vertical-align: middle;
  }

  .google_play_icon {
    width: 83px;
    height: 32px;
  }

  .steam_icon {
    margin-left: 7px;
    width: 32px;
    height: 32px;
  }

  .playgrounds>div {
    display: grid;
  }

  .social_media {
    display: grid;
  }

  /* Links inside the navbar */
  .navbar .link_a { font-size: 8px; }

  /* Dropdown button */
  .dropdown .dropbtn { font-size: 8px; }

  .dropdown-content a {
    font-size: 7px;
    padding: 6px 16px;
  }
}

@media (max-width: 380px) {

  img.ae_logo {
    width: 24px;
    height: 24px;
  }

  a.ae_logo {
    width: 5%;
    height: 24px;
  }

  #language_link {
    width: 24px;
    height: 12px;
  }

  .info {
    font-size: 7px;
  }

  .social_icon {
    width: 24px;
    height: 24px;
    margin-right: 5px;
  }

  .social_div {
    vertical-align: middle;
  }

  .google_play_icon {
    width: 62px;
    height: 24px;
  }

  .steam_icon {
    margin-left: 5px;
    width: 24px;
    height: 24px;
  }

  .playgrounds>div {
    display: grid;
  }

  .social_media {
    display: grid;
  }

  /* Links inside the navbar */
  .navbar .link_a {
    font-size: 5px;
    padding: 14px 4px;
  }

  /* Dropdown button */
  .dropdown .dropbtn {
    font-size: 5px;
    padding: 14px 4px;
  }

  .dropdown-content a {
    font-size: 5px;
    padding: 3px 10px;
  }
}