#alert{
    position: absolute;
    border-radius: var(--radius-lg);
    color: var(--txt);
    top: 0;
    width: var(--alert-width);
    background-color: var(--bg-card);
    padding: 1rem;
    margin: 1rem;
    z-index: 6;
    box-shadow: var(--shadow);
}

button.close{
    background-image: url("Close.svg");
  }

@media (max-width : 512px) { 
    #alert{
        width: calc(100% - 1rem);
    }
}