@font-face{
    font-family: nevo;
    src: url(Nevo\ Ultra\ Bold\ Italic.otf);
    font-weight: bold;
    font-style: bold;

}

*{
    box-sizing: border-box; 
}

html{
    scroll-behavior: smooth;
}

body {
    
    font-family: roboto;
    margin: 0;
}

h1{ display: flex;
    font-size: 2.7em;
    font-family: nevo;}
h2{ font-size: 2.7em;}
h3{ font-size: 2em;}
p{ font-size: 1.25em;}


button{
    font-family: roboto;
    font-size: 1.5em;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.5);
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    color: white;
    background-color:rgba(62,149,75,255);

}

button:hover{
    background-color: rgb(58, 107, 65);
}

.container{
  max-width: 1400px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.color-acento{ color: rgba(62,149,75,255);}

header{
    background-color: rgb(62,149,75);
    
}

header .logo{
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 25px 30px;
    font-family: nevo;
    color: white;
    font-size: 1.6em;
}

header .container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

header nav{
    display: flex;
    flex-direction:row;
    text-align: center;
    padding-bottom: 25px;
    
}

header a{
    display: flex;
    padding: 5px 12px;
    text-decoration: none;
    font-weight: bold;
    color: whitesmoke;
}

header a:hover{
    color: yellow;
}

.barranav{
    display: flex;
    justify-content: center;
    }

.navbar-brand:hover {
    transform: scale(1.15);
    color: yellow;
}

.nav-item:hover {
    transform: scale(1.15);
    color: yellow;
}


#Tu-Club-Favorito .container{
    text-align: center;
    padding: 60px 12px;
}

.col:hover {
   transform: scale(1.15); 
}

#nuestras-disciplinas{
    background-color: rgb(30, 30, 30);
    color: whitesmoke;
    text-align: center;
}


#nuestras-disciplinas .container{
    padding: 60px 10px;
}

#nuestras-disciplinas p{
   
}

#nuestras-disciplinas .carta{
   background-position: center center;
   background-size: cover;
   padding: 50px 0px;
   margin: 20px;
   border-radius: 20px;
}

.carta:first-child{
    background-image: linear-gradient(
        0deg,
        rgba(0,0,0,0.3),
        rgba(0,0,0,0.3) 
    )
    ,url(futbol.jpg);
    
}

.carta:nth-child(2){
    background-image: linear-gradient(
        0deg,
        rgba(0,0,0,0.3),
        rgba(0,0,0,0.3) 
    )
    ,url(hadball.png);
        
}
    
.carta:nth-child(3){
    background-image: linear-gradient(
        0deg,
        rgba(0,0,0,0.3),
        rgba(0,0,0,0.3) 
    )
    ,url(basquet.png);
}
    
 .container-footer{
text-align: center;
padding: 30px 20px;
}

#lm-tu-club-favorito{
  display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: whitesmoke;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.5);
    flex-direction: column;
    height: 40vh;
    background-color: rgb(58, 107, 65);
    background-image: linear-gradient(
        0deg,
        rgba(0,0,0,0.3),
        rgba(0,0,0,0.3) 
        )
} 

#historia-del-club{
    display: flex;
    justify-content: center;
    text-align: center;
    list-style-type: none;
}


:root{
    --facebook: #1233f0;
    --instagram: #e71434;
    --youtube: #bd081c;
}

.redes-container{
    display: flex;
    flex-direction: column;
    height: 10vh;
    align-items: center;
    justify-content: center;
    padding-right: 30px;
}

.redes-container ul li{
    display: inline-block;
    margin: 0 20px;
    width: 50px;
    height: 50px;
    text-align: center;
}

.redes-container ul li a{
    display: block;
    padding: 0 10px;
    background: rgb(30, 30, 30);
    color: aliceblue;
    line-height: 50px;
    font-size: 18px;
    box-shadow: 0 3px 5px 0px rgb(0, 0, .2);
    transition: .2s;
}

.redes-container ul:hover a{
    filter: blur(2px);
}
.redes-container ul li a:hover{
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 5px 0px rgb(0, 0, .4);
    filter: none;
}

.redes-container ul li .facebook:hover{
    background: var(--facebook);
}

.redes-container ul li .instagram:hover{
    background: var(--instagram);
}

.redes-container ul li .youtube:hover{
    background: var(--youtube);
}

footer{
  background-color: rgb(230, 230, 230);
}

footer p{
  margin: 0;
  padding: 12px;
  color: rgb(36, 36, 36);
}

footer .container{
      
    height: 50px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

@media (min-width: 850px){
    header{
        
        width: 100%;

    }

    header .container{
        flex-direction: row;
        justify-content: space-between;
    }

    header nav{
        flex-direction: row;
        padding-bottom: 0;
        padding-right: 20px;
  }  
  .imggrande{
    display: flex;
  }
  .hero{
    display: flex;
  }
  
  
}

