* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    background-color: rgb(6, 94, 6);
}

button {
    padding: 0.8rem 1.6rem;
    background-color: #fff;
    color: rgb(6, 94, 6);
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-weight: bold;
    cursor: pointer;
}

button:focus {
    outline: none;
}

button:active {
    transform: scale(0.98);
}

#toasts {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.toast {
    background-color: #fff;
    color: rgb(6, 94, 6);
    border-radius: 8px;
    padding: 1rem 2rem;
    margin: 0.5rem;
}