*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: auto;
    padding: 20px 0;
    /* box-shadow: 0px 1px 3px #232323; */
    border-bottom: 1px solid #d3d3d3;
    font-size: 0.9rem;
}

.box-start{
    display: flex;
    align-items: center;
    gap: 10px;
}

nav ul{
    display: flex;
    gap: 10px;
}

nav a{
    color: #101010;
    font-weight: bold;
}

nav a:hover{
    color: #1cb80a;
}

.box-end{
    display: flex;
    align-items: center;
    gap: 20px;
}

.box-end a {
    color: black;
}


.btn-inicio{
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    border: 1px solid black;
    color: black;
}
.btn-unete{
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    background-color: black;
    color: white !important
}

main{
    display: flex;
}
.main-start{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;

    height: 500px;
    width: 30%;
    background-color: #055734;
    color: #fff;
}
.main-end{
    flex-grow: 1;
}
.auth-buttons-main{
    display: flex;
    gap: 10px;
}
.auth-buttons-main  .btn-inicio{
    filter: invert();
}
.auth-buttons-main  .btn-unete{
    filter: invert();
}

.products{
    display: flex;
}
.card{
    display: flex;
    flex-basis: 200px;
    flex-direction: column;
    align-items: center;
    border: 1px solid black;
    text-align: center;
}



/* .container{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;


    background-color: blueviolet;
    border: 2px solid black;
    width: 600px;
    height: 500px;
}

.box{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
    height: 100px;
    background-color: orange;
    border: 2px solid black;
    border-radius: 5px;
}
.tres{
background-color: aqua;
flex-shrink: 3;
} */