*{
    box-sizing: border-box;

}

body{
    font-family: 'Roboto', sans-serif;
    margin: 0;

}
h1{font-size: 8em;}
h2{font-size: 2.7em;}
h3{font-size: 2em;}
p{font-size: 1.25em;}
ul{list-style: none;}

.container{
    max-width: 1400px;
    margin: auto;
}

header{
    background-color: aqua;
}

header .logo{
    margin: 0;
    padding: 25px 30px;
    font-weight: bold;
    color: blueviolet;
    font-size: 1.8em;
}

header .container{
    display: flex;
    flex-direction: column;
    align-items: center;
}
header nav{
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 25px;

}

header a{
    padding: 5px 12px;
    text-decoration: none;
    font-weight: bold;
    color: black;
}

header a:hover{
    color: blueviolet;
}

#hero{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    height: 90vh;
    color: azure;
    background-image: linear-gradient(
        0deg,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    )
    ,url("media/cancha.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;

    }
#hero h1{
    font-size: 5em;

}
#hero h1:hover{
    color:blueviolet ;
}
#pie-pagina{
    display: flex;
    flex-direction: column;
    background-color: black;
    color: white;
    align-items: center;
}
    @media( min-width: 720px){
        header {
            position: fixed;
            width: 100%;
        }
        header .container{
            flex-direction: row;
            justify-content: space-between;
        }
        header .container{         
            flex-direction: row;            
        }
        header nav{            
            flex-direction: row;
            padding-bottom: 0;
            padding-right: 25px;           
        }
        #hero h1{
            font-size: 10em;
        
        }
        #pie-pagina{
            
            flex-direction: row;
            padding-left: 25px;
            padding-right: 25px;
            justify-content: space-between;
        }

    }