body {
    margin: 0;
    font-family: sans-serif;
}

dialog {
    position: absolute;
    background-color: rgba(5, 36, 138, 0.829);
    height: 80vh;
    box-sizing: border-box;
    margin-top: 100px;
    border-color: rgb(2, 25, 88);   
}

#backdrop {
    color: #fff;
    border-radius: 10px;
    background-color: rgba(212, 31, 31, 0.658);
    font-size: 20px;
    text-align: center;
}

.modal__content {
    background-color: #fff;
    padding: 5px 5px;
    width: 80%;
    margin: auto;
    margin-top: 150px;
    position: relative;
}

.modal__title {
    margin-top: 10px;
}

.modal__close-button {
    background-color: #000;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    padding: 4px 12px;
    border-radius: 6px;
}