@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400&display=swap');

* {
    box-sizing: border-box;
}

body {
    background-color: rebeccapurple;
    font-family: 'Nunito', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    margin: 0;
}

.btn{
    background-color: #fff;
    color: rebeccapurple;
    font-family: inherit;
    font-weight: bold;
    border:none;
    padding: 1rem ;
    cursor: pointer;
    border-radius: 5px;
}
.btn:focus{
    outline: none;
}

.btn:active{
    transform: scale(0.98);
}

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

.toast{
    background-color: #fff;
    border-radius: 5px;
    padding: 1rem 2rem;
    margin: 0.5rem;
}

.toast.info{
    color: rebeccapurple;
}
.toast.error{
    color: red;
}
.toast.success{
    color: green;
}