* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  background-color: #003647;
  background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre-v2.png");
}
#root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.btn-glow {
  transition: 0.3s;
}

.btn-glow:hover {
  box-shadow: 0 0 15px 4px #ffffffb2;
}

.footer {
  border-top: 5px solid #ffffff;
  text-align: center;
  color: white;
  background-color: rgb(59, 59, 59);
  padding: 20px 20%;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex-1 {
  flex: 1;
}

.main-container {
  flex: 1;
  margin: auto;
  width: 75%;
  text-align: center;
}

.heading {
  margin-bottom: 20px;
  color: #003647;
  background-color: #c2dde6;
  box-shadow: -1px 8px 20px 0px #00000082;
}

.btn-style,
.btn-style:hover,
.btn-style:active,
.btn-style:focus {
  font-weight: 500;
  background-color: #c2dde6;
  border-color: #c2dde6;
  color: #003647;
}

.mytooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.mytooltip .mytooltiptext {
  visibility: hidden;
  opacity: 0;
  width: 304px;
  background-color: #003141;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  padding: 10px;
  position: absolute;
  z-index: 44;
  box-shadow: 0 0 14px 3px #000000a6;
  right: -6px;
  bottom: -105px;
  transition: 0.3s;
}

.mytooltip:hover .mytooltiptext {
  visibility: visible;
  opacity: 1;
}

.heading h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

.game-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 440px;
  min-width: 400px;
  background-color: white;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  margin: 20px;
  transition: 0.2s;
  box-shadow: 0 0 13px 16px #0000005e;
  outline: 8px solid #c2dde6;
}

.game-card:hover {
  outline: 12px solid #eba526;
}

.game-card img {
  width: 100%;
  border-radius: 12px 12px 0px 0px;
}

.game-card h2 {
  margin-bottom: 7px;
  font-size: 1.7rem;
  font-weight: 700;
}

.game-card p {
  font-size: 1.3rem;
  margin: 0;
}

.details-container {
  text-align: left;
  background-color: #c2dde6;

  padding: 18px;
}

.get-button {
  border-radius: 0px 0px 12px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.4rem;
  color: white;
  margin-top: auto;
  transition: 0.3s;
}

.get-button:hover {
  color: white;
}

.get-button i {
  margin-left: 15px;
}

.cards-container {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.logo {
  max-width: 100%;
  width: 500px;
  margin: 0;
  padding: 0;
  min-width: 220px;
}

@media (max-width: 991px) {
  .main-container {
    width: 100%;
  }
  .game-card {
    max-width: 490px;
    min-width: 350px;
  }

  .heading {
    padding: 15px;
  }
  .heading h1 {
    font-size: 2rem;
    margin: 0;
  }
}

@media (max-width: 1200px) {
  .main-container {
    width: 91%;
  }
}

.logo {
  font-size: 2.4rem;
  font-weight: 700;
}

.navbar-items {
  margin: 0px 10px !important;
  font-size: 1.8rem !important;
  color: rgb(180, 180, 180) !important ;
  text-decoration: none !important;
  transition: 0.3s !important;
}

.navbar-items:hover {
  color: white !important;
}

.popup-icon {
  font-size: 25px;
  margin: 0px 10px;
}

.bottom-content-panel {
  background-color: #c2dde6;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  font-size: 1.5rem;
  margin: 15px;
  margin-bottom: 70px;
  box-shadow: 0 0 19px 12px #0000005c;
}

.admin-page {
  text-align: center;
  margin-bottom: 50px;
  width: 100%;
  background-color: #c2dde6;
  border-radius: 10px;
  padding: 50px;
  box-shadow: 0 0 20px 16px #0000003d;
}

.login-form {
  margin: auto;
  max-width: 500px;
}

.login-form input {
  font-size: 20px;
}

.admin-heading {
  gap: 20px;
}

.admin-list-img {
  border-radius: 8px;
}

.admin-list-details {
  text-align: left;
}

.admin-post-form {
  text-align: left;
  max-width: 600px;
}

.text-editor {
  border: solid 1px black;
  border-radius: 8px;
  padding: 10px;
}
