.gd-message.gd-tutorial {
    text-align: center;
    width: 400px;
    height: 170px;
    background-color: lightblue;
    position: fixed;
    left: 400px;
    transform: translateX(-50%);
    top: 50px;
    border-radius: 30px;
    animation-name: newMessage;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}


@keyframes newMessage {
    0% { background-color: 0;}
    100% { background-color: transparent;}
}

.lastMessageButton {
    position: fixed;
    top: 700px;
    left: 20px;
}

