@import url('https://fonts.googleapis.com/css?family=Alike');

#alertContainer {
    width: 0px;
    height: 0px;
    border-radius: 15px;
    background-color: rgba(80, 80, 80, 0.0);
    position: absolute;
    top: 0px;
    right: 0px;
    overflow: hidden;
    display: block;
    color: white;
    font-family: 'Alike';
    /* -webkit-box-shadow: 0px 0px 20px #0f3369; */
    -webkit-animation: animateAlert 7s 0s 1;
    }
#alertHeader {
    width: 1000px;
    height: 90px;
    float: right;
    border-radius: 15px;
    background-color: rgba(28, 28, 28, 0.4);
    text-shadow: 1px 1px 2px black;
    position: relative;
    overflow: hidden;
    text-align: center;
    font-size: 20px;
    }
#alertContent {
    width: 1000px;
    height: 180px;
    border-radius: 15px;
    word-wrap: break-word;
    background-color: rgba(80, 80, 80, 0.4);
    position: relative;
    overflow: hidden;
    color: white;
    display: table;
    }
.topDonationText {
    width: 1000px;
    text-align: center;
    font-size: 75px;
    word-break: break-all;
    color: white;
    display: table-cell;
    vertical-align: middle;
    }
span {
  font-size: 80px;
}
@-webkit-keyframes animateAlert {
    0%, 100% {
        width: 0px;
        height: 90px;
        }
    20%, 80% {
        width: 1000px;
        height: 90px;
        }
    30%, 70% {
        width: 1000px;
        height: 270px;
        }
    }
