
/*Body*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: "Roboto Light", sans-serif;
  background-color: #fff;
  color: #333;
}

.background-image {
  margin: 0;
  min-height: 100vh;
  padding-bottom: 100px;
  align-items: center;
  background: linear-gradient(to bottom right, #3e9cbf, #a7ecf2, #f2c43d, #f17c37, #f26d50);
  font-family: Arial, sans-serif;
}

/* Header styling */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;

  background-color: #000;
  color: #fff;
}

/*Logo of game*/

.mobile .logo {
  display: none;
}

.logo img {
  height: 50px;
}

 /* Navigation */

   .navigationLink {
    display: inline;
    margin-right: 20px;
  }

  .mobile .navigationLink {
    display: none;
  }

/*Navigation for mobile*/

.navigationMenu {
  display: none;
}
.mobile .navigationMenu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.menuButton {
  background-color: black;
  border: none;
  margin-right: auto;
  color: white;
}

.menuContent {
  display: none; /* Hidden by default */
  position: absolute;
  top: 100%;
  left: 0;
  background-color: black;
  min-width: 200px;
  border-radius: 10px;
  z-index: 99;
  color: white;
  padding: 10px;
}


.menuContent a {
  display: block; /* Stack links vertically */
  padding: 10px; /* Padding around each link */
}

/* Change button color when hovering */
.navigationMenu:hover .menuButton {
  transform: scale(1.2);
}

/* Nice styling for general links */

a {
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  background: linear-gradient(45deg, white, white, white,
  #f7dc66, #a8216b, #f1184c, #f36943);
  background-size: 300%;
  -webkit-background-clip: text;
  color: transparent;
  transition: background-position 0.5s ease-in-out, transform 0.5s ease-in-out;
  display: inline-block;
}

a:hover {
  background-position: 100%;
  transform: scale(1.2);
}

.selectedLink a {
  color: #555555;
  margin-right: 20px;
  display: inline;
}

/*Social media*/

.socialMedia-container {
  display: flex;
  gap: 20px;
}

.mobile .socialMedia-container {
  gap: 10px;
}

.socialMediaIcon {
  width: 50px;
  height: 50px;
  object-fit: fill;
}

/*Container for license agreement*/

.outerBox {
  margin-top: 20vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.container {
  background-color: #000; /* Black background */
  color: #fff; /* White text */
  width: 80vw;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

h1 {
  margin-bottom: 20px;
  font-size: 24px;
}
p {
  margin: 0;
  font-size: 16px;
}

.footer-text {
  margin-top: 40px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.mainPhoto img {
  width: 100%;
  height: auto;
}

/* Content section */
.content {
  display: flex;
  justify-content: space-between;
  padding: 40px 20px;
}

.text-content {
  max-width: 500px;
}

.text-content h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}
/*link to App Store*/
.app-links {
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-links img {
  height: 100px;
}

/*Video of Application*/

video {
  width: 100%;
  max-width: 850px;
  border-radius: 60px;
  display: block;
  margin: 0 auto;
}

/*If you are on mobile*/

@media (max-width: 768px) {
  .content {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
  }

  .text-content {
    order: 1;
    padding: 20px;
  }

  .game-preview {
    order: 2;
  }

  .mobile video {
    border-radius: 30px;
  }
}

ul {
  list-style-type: none;
}



