
@import url('https://fonts.googleapis.com/css2?family=Inconsolata&family=Roboto+Mono:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inconsolata&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Odibee+Sans&family=Raleway:wght@100;600&display=swap');

@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');

*{
    margin:025;
    padding: 030;
    background-color: #ffecd1;
    font-family: 'Tiro Gurmukhi', serif;
  
}

.cabecera{
    position: fixed;
    top:0vh;
    height: 5vh;
    width:100vw;
    background-color: #d1b39f;
    text-align: center;
    font-family: 'Lexend', sans-serif; 
}

h1{
    font-size: 50px;
    font-family: 'Tiro Kannada', serif;
    color: #ffd1b3;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a{
    text-decoration: none;
}

nav a:link, nav a:visited{
    color: #d1b39f;
    font-size: 24px;
    background: none;
    font-family: 'Oswald', sans-serif;
}
   
h2{
    font-size: 30px;
    font-family: 'Tiro Gurmukhi', serif;
    color: #d1b39f;
    background-color: #ffd1b3;
}

.article{
    width: 60%;
    height: 40%;
    border: 4px solid white;
    margin: auto;
    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: 15%;
    align-items: initial;
    margin: auto;
}

.pie{
    position: fixed;
    bottom: 0vh;
    font-size: 17px;
    width: 100vw;
    height: 5vh;
    background-color: #d1b39f;
    font-family: 'Lexend', sans-serif;
}

button {
    width: 140px;
    height: 45px;
    font-size: 23px;
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
    color: white;
    font-family: 'Times New Roman', Times, 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: rgb(255, 255, 255);
    z-index: -1;
    transition: all 0.5s;
   }
   
   button:hover::before {
    width: 100%;
   }
   
   button:hover {
    color: black;
   }
   
   button:active:before {
    background: #b9b9b9;
   }

  
