* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.myToast {
    width: 200px;
    height: 60px;
    line-height: 60px;
    vertical-align: middle;
    margin: 30px 0;
    background: #048fc5;
    text-align: center;
    font-size: 1.5em;
    color: #fff;
}
.my-toast-messages {
    position: fixed;
    overflow: hidden;
    top: 30px;
    right: 10px;
    width: 300px;
    height: 100%;
}
.my-toast-message {
    display: none;
    top: 30px;
    right: 10px;
    width: 200px;
    height: 60px;
    line-height: 60px;
    vertical-align: middle;
    background: #000;
    text-align: center;
    font-size: 1.5em;
    color: #fff;
    margin: 30px auto;
}
.container a {
    display: block;
    margin: 3em 0;
}