.main-container {
  flex: 1; 
  display: flex;
  flex-direction: column;
  margin: 0 auto;
 width: 100%;
}
header{
  background-color: #201692 !important;
}
main{
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  flex: 1 !important;
  text-align: center;
  background-color: #fff;
}
.navbar-container {
  width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.myNav {
  max-width: 1920px;
   width: 100% !important;
  background-color: #201692 !important;
  padding: 10px 20px !important;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0px 20px;
}

.navText {
  color: #fff !important;
  font-size: 30px !important;
  font-weight: bold;
  transition: transform 0.2s;
}
.poko-logo-img{
  width: 150px;
}
.navText:hover {
  cursor: pointer;
  transform: scale(1.1);
}
.search-form{
  display: flex;
  gap: 3px;
}
/* end of Nav-Bar */
.pokemon-heading{
  color: #201692;
  text-align: center;
  margin-top: 35px;
  font-size: 56px;
}
.pokemon-container {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  margin-top: 40px;
}
.pokemon-card {
  width: 180px;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  color: white;
  transition: transform 0.2s;
  box-shadow: 5px 10px 5px rgba(0, 0, 0, 0.4);
}
.pokemon-card:hover {
  transform: scale(1.1);
  cursor: pointer;
}
.load-more-btn {
  margin: 20px auto;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 10px rgba(255, 75, 43, 0.5);
}
.load-more-btn:hover {
  background: linear-gradient(45deg, #ff4b2b, #ff416c);
  transform: translateY(-3px);
  box-shadow: 0px 6px 15px rgba(255, 75, 43, 0.7);
}
.load-more-btn:active {
  transform: translateY(1px);
  box-shadow: 0px 2px 5px rgba(255, 75, 43, 0.5);
}
.loading-text {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}
.pokemon-types{
  display: flex;
  gap: 5px;
}
.poko-type{
  font-size: 10px;
  padding: 5px 10px;
    font-weight: bold;
    text-transform: capitalize;
    color: white;
    border-radius: 12px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}
.search-error-popup{
  width: 400px;
  height: 50px;
  color: #fff;
  background-color: #201692;
  text-align: center;
  border-radius: 30px;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
}
footer{
  flex-shrink: 0; /* Prevent footer from shrinking */
  width: 100%; /* Full width */
  height: 90px;
  background-color: #201692;
  color: white;
  display: flex;
  justify-content: center; /* Center the content horizontally */
}
.footer-container{
  max-width: 1920px; /* Constrain content width */
  width: 100%; /* Take full width up to max-width */
  padding-top: 10px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px; /* Add padding for spacing */
}
.footer-logo img{
  width: 70px;
}
.footer-logo {
  font-size: 30px;
}
.copy-right p{
  margin: 0px !important;
  font-size: 14px !important;
}
.impressum{
  font-size: 25px;
   transition: transform 0.2s;
}
.impressum:hover{
  cursor: pointer;
  transform: scale(1.1);
}
@media screen and (max-width: 600px){
  .pokemon-heading{
    font-size: 44px;
  }
  .footer-logo{
    font-size: 20px !important;
  } 
  .impressum-text{
    font-size: 18px !important;
  }
  .copy-right p{
    font-size: 12px !important;
  }
}
@media screen and (max-width: 500px){
  .pokemon-heading{
    font-size: 36px;
  }
  .nav-flex {
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
  }
  .search-error-popup{
    height: 70px;
  }
}
@media screen and (max-width: 370px){
  .footer-container{
    padding: 0px;
  }
  .footer-logo{
    font-size: 16px !important;
  }
  .pokemon-heading{
    font-size: 28px;
  }
}







