.toastmaker {
    animation-name: toastEffect;
    animation-timing-function: ease-in;
    animation-duration: 5s;
    background-color: #00314a;
    border-radius: 5px;
    color: #FDCD08;
    display: inline-block;
    padding: 2px 20px;
    position: fixed;
    text-align: center;
    text-decoration: none;
    z-index: 2147483647
}

.toastmaker-bottom {
    bottom: 1rem
}

.toastmaker-center {
    left: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: fit-content;
    right: 0
}

.toastmaker-left {
    left: 1rem
}

.toastmaker-right {
    right: 1rem
}

.toastmaker-top {
    top: 1rem
}

@keyframes toastEffect {

    0%,
    100% {
        opacity: 0
    }

    20%,
    80% {
        opacity: 1
    }
}