/* BOTÕES *//* BOTÕES *//* BOTÕES *//* BOTÕES *//* BOTÕES *//* BOTÕES *//* BOTÕES *//* BOTÕES */

button {
    font-family: 'Krub', sans-serif;
}

button {
    border-radius: 24.363px;
    border: #381E11;
    border-bottom: 2.7px solid #381E11;
    background: #FDD464;
    border-color: #381E11;
    color: #381E11;
    width: 330px;
    height: 64px;
    font-size: 19px;
    font-weight: 600;
    border-radius: 20.33px;
    cursor: pointer;
    transition: all 0.15s linear;
}

@media (max-width: 430px) {
button {
        width: 77vw;  
        transition: none;
    }
}
    

button:hover {
    border-color: #FDD464;
    border-bottom: 4px solid #FDD464;
    background: #5C4928;
    color: #FDD464;
}

/* DIV CONNECT WALLET *//* DIV CONNECT WALLET *//* DIV CONNECT WALLET *//* DIV CONNECT WALLET */

* {
    margin: 0px;
    padding: 0px;
}

a {
    color: black;
    text-decoration: none;
}

body {
    width: 100%;
    height: 100vh;
    background: #F8F3E2;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Krub', sans-serif;
}

main {
    gap: 80px;
    max-width: 1200px;
    height: 100%;
    width: 100%;
    display: flex; 
    flex-direction:column;
    align-items: center;
    justify-content: center;
}

/* SEÇÃO MAIN *//* SEÇÃO MAIN *//* SEÇÃO MAIN *//* SEÇÃO MAIN *//* SEÇÃO MAIN *//* SEÇÃO MAIN */

.contributors-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.wll {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

/* INÍCIO DO TOAST *//* INÍCIO DO TOAST *//* INÍCIO DO TOAST *//* INÍCIO DO TOAST *//* INÍCIO DO TOAST */


.toast {
    position: fixed;
    bottom: 20px;
    left: 40%;
    padding: 10px;
    border-radius: 5px;
    color: #474747;
    font-size: 16px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s;
}

.toast.show {
    opacity: 1;
}

.toast.success {
    background-color: rgb(192, 232, 192);
    border: 1.5px solid;
    border-radius: 14px;
    border-color: green;

}

.toast.error {
    background-color: #FCEBEB;
    border: 1.5px solid;
    border-radius: 14px;
    border-color: #DC362E;
}
