@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
#header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 0px 15px 0px;
    width: min(95%, 800px);
    margin: 0px auto;
}


#header ul {
    display: flex;
}

#header div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

}

ul>li {
    padding-right: 15px;
    display: block;
    font-size: 1.5rem;


}


.box {
    border: 0.5px solid rgba(128, 128, 128, 0.5);
    margin: 0px auto;
    padding: 15px 50px;



}

.box--negativo {
    background-color: rgba(57, 94, 35, 0.425);
    border: 0.5px solid rgba(128, 128, 128, 0.5);
    margin: 0px auto;
    padding: 15px 50px;

}

.box--negativo > div {
    margin-top: 20px;
    margin-bottom: 5px;
    border-radius: 8px;
}

.box>div {
    margin-top: 20px;
    margin-bottom: 5px;
    border-radius: 8px;
}

.card {

    width: min(95%, 800px);
    margin: 0px auto;
    background-color: bisque;
    padding: 15px 15px 15px 15px;

}


.card  > div {
    margin-top: 15px;
    margin-bottom: 15px;
}

.card--negativo {
    background-color: white;
    border:  darksalmon 1px solid;
    width: min(95%, 800px);
    margin: 0px auto;
    padding: 15px 15px 15px 15px;



}

.card--negativo>div {
    margin-top: 15px;
    margin-bottom: 15px;
}

.grid__cores {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
}

.grid__item {
    width: 100px;
    height: 100px;
    border: 1px rgba(0, 0, 0, 0.507) solid;
    border-radius: 5px;
    font-size: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg--dark {
    background-color: black;
}

.bg--white {
    background-color: white;
}

.bg--primary {
    background-color: #0D6EFD;
}

.bg--secundary {
    background-color: #6C757D;

}

.bg--sucess {
    background-color: #198754;
}

.bg--danger {
    background-color: #DC3545;
}

.bg--warning {
    background-color: #FFC107;
}

.bg--info {
    background-color: #0DCAF0;
}

.bg--gray-100 {
    background-color: #F8F9FA;
}

.bg--gray-200 {
    background-color: #F7F7F7;
}

.bg--gray-300 {
    background-color: #DEE2E6;
}

.bg--gray-400 {
    background-color: #CED4DA;
}

.bg--gray-500 {
    background-color: #ADB5BD;
}

.bg--gray-600 {
    background-color: #FCFCFC;
}

.bg--gray-700 {
    background-color: #495057;
}

.bg--gray-800 {
    background-color: #343A40;
}

.bg--gray-900 {
    background-color: #212529;
}

.botao-exemplo {
    background-color: red;
    width: 150px;
    height: 40px;
    border-radius: 5px;
    color: white;
    font-size: 1.5rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    border: rgba(128, 128, 128, 0.493) 1px solid;
}

.botao-exemplo:hover {
    background-color: #0D6EFD;
    transition: 1s;
}

.flexbox {
    display: flex;
    flex-direction: row;
}

.flexbox--center {
    display: flex;
    align-items: center;
}


.flexbox--wrap {
    display: flex;
    flex-wrap: wrap;
}

.gap15 {
    gap: 15px;
}

.componentes {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}

.componentes>div {
    margin: 20px 10px 10px 10px;
}