@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    border: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #e3e5eb;
    width: 100vw;
    height: 100vh;
}

.content {
    /* background-color: red; */
    width: 78%;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 6px;
    position: absolute;
    right: 0;
    top: -50px;
}

.titulo-nav {
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-radius: 10px;
}

.titulo-item {
    display: flex;
    height: min-content;
    justify-content: center;
    align-items: center;
    margin-left: 2%;
    margin-top: 0.9%;
    gap: 12px;
    color: #919191;
}

.titulo-item>h3 {
    font-weight: 400;
    font-size: 20px;
}

.titulo-item>i {
    color: #7d17f1;
}

.titulo-item>i:hover {
    color: black;
    cursor: pointer;
}


.icon-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.6%;
    margin-right: 1.5%;
    font-size: 22px;
    color: #d10e0e;
}

.icon-item:hover {
    color: #42a756;
    cursor: pointer;
}


