#backdrop {
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
    height:100%;
    background-color: rgba(0,0,0,0.7);
    display: none;
}

.modal{
    box-sizing: border-box;
    position: fixed;
    top: 10%;
    left: 20%;
    width: 60%;
    background-color: white;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    display: none;
}

#modal-content {
    text-align: center;
    color: var(--color-grey-900);
    margin-bottom: 2rem;
}
#modal-content ol{
    padding: 0;
    list-style: none;
}
#modal-content h2:first-of-type{
    margin-top: 0;
}

#modal-btn{
    text-align: end;
}
#modal-btn button{
    border: none;
    background-color: white;
    font-size: 1.5rem;
}