* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
    height: 100dvh;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #141212;
    color: white;
    margin-inline: 10px;
}


header{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

header h1{
    font-size: 1.7rem;
    margin: 0;
    margin-bottom: 20px;
    
}

header img{
    width: 200px;
    height: 200px;
}

nav{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}

nav ul li {
    margin-block: 15px;
}

nav a:hover {
    color: #141212;;
    background-color: white;
}


#porcentaje{
    margin-block: 10px;
}

footer{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    font-size: 0.8rem;
    text-align: center;
    padding: 10px;
    width: 100%;
}

footer a {
    text-decoration: none;
    color: white;
}

#theme {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 999;
}
