.toast-container{
    display: flex;
    width: 100%;
    position: absolute;
    height: 100vh;
    justify-content: center;
    top: 10%
}
.toast {
    display: flex;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    z-index: 500;
    width: fit-content;
    background-color: rgba(43, 203, 197, 0.899);
    border-radius: .2em;
    transition:
        opacity 500ms,
        transform 500ms;
    padding: .5em 1em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: large;
    font-weight: 600;
    animation: pulse 2s infinite;
}

button{
    background-color: transparent;
    border: none;
    color: #3e3c3cad;
}

@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}