* {
    margin: 0;
    padding: 0;   
}

.primeraPantalla {
    height:100vh;
    width: 100vw;
    display: flex;  
    justify-content: center; 
    background-image: url('Img/Background .png');
    background-repeat: no-repeat;
}

.segundaPantalla {  
  background-color: #2c0452;    
}

.pantallaInicio { 
    display: flex; 
    flex-direction: column;
    align-items: center; 
}

.iconoInicio {
  font-size: 100px ;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -70px;
}

.logo{
   max-width: 700px; 
}

/* Estilo del contenedor de personajes */
.champions-container{
    max-width: 60rem;
    margin: 0 auto;
}

/* Estilo del contenedor grid de personajes */
.champions-container-grid{ 
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
} 

/* Estilo de la imagen */
/* .champion-card Img{
    max-width: 100%;
    height: auto;  
    display: flex;
}  */

/* Estilo de la imagen */
.champion-card Img {
  width: 30rem;
  height: 33.9rem;
  display: flex;
  object-fit: cover;
}

@font-face {
  font-family: BeaufortforLOL-Bold;
  src: url(src/font/BeaufortforLOL-Bold.ttf);
}

@font-face {
  font-family: BeaufortforLOL;
  src: url(fonts/BeaufortforLOL-Medium.ttf);
}

body {
  font-family:BeaufortforLOL-Bold, BeaufortforLOL, Verdana, Geneva, Tahoma, sans-serif;
  background-image: url('Img/Background.png');
  height: 100%;
  width: 100%;
}

/* Estilo del rótulo de la imagen */
.champion-card .container-name{
    background-color: #080422;
    color: #A7852F;    
    transform: translate(0, -30px);
    padding: 0.5rem;
    font-family: BeaufortforLOL-Bold;
    text-transform: uppercase;
    font-size: 15px; 
}

@media (max-width: 1080px) {  
  .logo {
    max-width: 300px;
  }
  .iconoInicio {
    font-size: 50px ;
  }
  .champions-container-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}  

@media (max-width: 768px) {
    .logo {
      max-width: 300px;
    }
  
    .champions-container-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
 
  @media (max-width: 640px) {
  
    .logo {
      max-width: 300px;
    }
  
    .champions-container-grid {
      grid-template-columns: 1fr;
    }
  } 

/* Estilo de la barra de navegación */
.nav {
    width: 100%;
    height: 80px;
    padding: 0 20px;
    background-color: rgb(1, 10, 19);
}

.logo__icon {
    display: block;
    position: absolute;
    margin: 3px 37px 0;
    width: 69px;
}

.logo__nav {
    display: block;
    width: 100%;
    height: auto;
}

.menu {
    margin: 0px auto;
    width: 80%;
    text-decoration: none;
    /* border: 1px solid white */
}

.menu__item {
    display: block;
    float: left;
    font-size: 22px;
    list-style: none;
    line-height: 60px;
    cursor: pointer;
}

.menu__item:hover {
    background-color: rgb(30, 40, 45);
}

.menu__btn {
    display: inline-block;
    text-align: center;
    padding: 0.1em 0.4em;
    margin: 0 0.4em;
    border-bottom: 3px solid #785A28;
}

.menu__list-dropdown {
    display: none;
    position: absolute;
    margin-top: 14px;
    z-index: 1;
    list-style: none;
    text-align: left;
    width: 12%;
}

.menu__item:hover .menu__list-dropdown {
    display: block;
}

.menu__inside {
    background: rgba(255, 255, 255, 0.6);
    padding: 0 1em;
}

.link {
    display: block;
    text-decoration: none;
    color: #F0E6D2;
}

.link--inside {
    color: #454545;
    font-size: 18px;
    padding: 8px 0;
    line-height: 25px;
}

.menu__inside:hover {
    background: #F4F4F4;
}

.progress__bar {
    max-width: 130px;
    border-radius: 10px;
}

.progress__bar::-webkit-progress-bar {
    max-width: 130px;
    border-radius: 10px;
    background-color: #e8e7e7;
}

.progress__bar::-webkit-progress-value {
    border-radius: 10PX 0px 0PX 10PX;
    background-color: #11b8eb;
}

.progress__bar,
.progress__text {
    display: block;
}

.search {
    float: right;
}

input[type="search"] {
    padding: 12px;
    font-size: 17px;
    border: none;
    width: 18rem;
    margin-top: 18px;
}

.search button {
    float: right;
    padding: 12px;
    font-size: 17px;
    border: none;
    margin-top: 18px;
    background-color: #FFFF;
}

.progress__bar {
    max-width: 215px;
}

.progress__text {
    font-size: 70%;
}

.clearfix {
    float: none;
    clear: both;
}