
@import url('https://fonts.googleapis.com/css2?family=Lexend&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tiro+Kannada&display=swap');

.cabecera{
    position: absolute;
    top:0vh;
    height: 5vh;
    width:100vw;
    background-color: #F8540A;
    text-align: center;
    font-family: 'Lexend', sans-serif; 
}

*{
    margin:025;
    padding: 030;
    background-color: #F8C471 ;
    font-family: 'Lexend', sans-serif, serif;
}

h1{
    font-size: 45px;
    font-family: "Gill Sans Extrabold", Helvetica, sans-serif;
    color:#000000   ;
    background-color: #F8540A;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a{
    text-decoration: none;
}

nav a:link, nav a:visited{
    color: black;
    font-size: 20px;
    background: none;
    font-family: "Gill Sans Extrabold", Helvetica, sans-serif;
}
   
h2{
    font-size: 40px;
    font-family: "Gill Sans Extrabold", Helvetica, sans-serif;
    color: #000000;
    background-color: #F8540A;
}

.article{
    width: 60%;
    height: 40%;
    border: 4px solid #D14506;
    margin: 5%;
    align-items: flex-end;
    font-size: 20px;
}

main{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: auto;
    align-items: center;
    font-size: 40px;
}

img{
    width: 30%;
    align-items: initial;
    margin: 7%;
}

.pie {
    color: black;
    font-size: 25px;
    background-color: #af491a  ;
    font-family: 'Lexend', sans-serif;
    text-decoration-style: wavy;
    text-align: center;
}

button {
    width: 140px;
    height: 45px;
    font-size: 23px;
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
    color: white;
    font-family: "Gill Sans Extrabold", Helvetica, sans-serif;
    font-weight: 700;
    position: relative;
    transition: all 0.5s;
    z-index: 1;
   }
   
   button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #F8540A;
    z-index: -1;
    transition: all 1s;
   }
   
   button:hover::before {
    width: 100%;
   }
   
   button:hover {
    color: black;
   }
   
   button:active:before {
    background: #F8540A;
   }

