#titulo {
    font-size: 6rem;
    font-style: italic;
    font-weight: 400;
    color: #ffc800;
}
#botonDark {
	width: 35px;
	height: 35px;
	background: transparent;
    background-image: url(../assets/img/moon_svgrepo.com.png);
    background-size: cover;
    border: none;
    transition: all 0.3s;
    }
    .dark-mode #botonDark{
    background-image: url(../assets/img/sun_svgrepo.com.png);
    }

    #botonDark:hover {
transform: scale(1.2);
}
.icono{
    display: flex;
    align-items: center;
    margin-left: 16px;
    order: 1;
}
/* .nav-item:nth-child(2) {
    order: 1;
    } */
     body.dark-mode {
        background-color: blueviolet;
        color: white;
     }