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

header {
    width: 100%;
    padding: 20px 8%;
    background-color: blueviolet;
}

#logo {
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
}

.navbar {
    width: 100%;
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav_lista {
    display: flex;
    list-style: none;
    gap: 80px;
    text-transform: uppercase;
}

.nav_item {
     font-size: 25px;
    color: white;
}
 .nav_item:hover {
    background-color:rgb(191, 4, 191) ;
    color: rgb(155, 153, 153);
    text-decoration: underline;
 }

 .home {
    display: flex;
    min-height: calc(100vh - 91px);
}

section {
    width: 100%;
    padding: 20px 8%;
    display: flex;
} 

.titulo {
    font-size: 4rem;
    color: color(from color srgb r g b);
}

