* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 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: #000000;
    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;
        background-color: #d3d3d3;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
}

.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: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;

    gap: 20px;
    background-color: blueviolet;
    border: 2px solid rgb(140, 42, 42);
    width: 600px;
    height: 500px;

}


.box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
    height: 100px;
    background-color: rgb(17, 125, 44);
    border: 2px solid black;
    border-radius: 5px;
}

.tres {
    background-color: lightpink;
    flex-grow: 3;
}

    -- IGNORE ---
    */