* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Hedvig Letters Sans', sans-serif;
}


:root {
    --primare: #0088cc;
    --grey-light: #eeeeee;
    --blue-light: #ABC7DB;
}

.alertContainer {
    position: fixed;
    left: 0;
    top:0;
    animation: hideAfterTime 6s linear;
    opacity: 0;
    width: 100vw;
    text-align: center;
    padding: 20px;
    box-shadow: 0 2px 2px grey;
    z-index: 999;
    background-color: var(--grey-light);
    display: flex;
    padding-bottom: 0;
    align-items: center;
    flex-direction: column;
   
}

.alertContainer p{
    font-size: 24px;
}
.line {
    margin-top: 20px;
    height: 4px;
    width: 80vw;
    background-color: var(--primare);
    animation: lineIndicator 6s linear;

}

@keyframes lineIndicator {
    from {
        width: 80vw;
    }
    to {
        width: 0vw;
    }
}


@keyframes hideAfterTime {
    0% {
        opacity: 1;
    }
    60% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}