/* ---------- Alert ---------- */
#alertWindow{
    left: 10%;
    right: 10%;
    top: 25%;
    width: 80%;
    z-index: 10;
    padding: 10px;
    position: fixed;
    min-height: 150px;
    text-align: center;
    border: 6px double black;
    background-color: whitesmoke;
    box-shadow: 2px 2px 15px black;
    animation: alertPopOut 0.2s ease-out;
}  @keyframes alertPopOut{ 0% {transform: scale(0)} 60% {transform: scale(1.1)} 100% {transform: scale(1)}}

#alertWindow img{
    height: 50px;
    width: 50px;
}

#alertWindow h4{
    margin: 10px 0 20px 0;
}