* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}

.btn-open {
    width: 20vw;
    height: 10vh;
    font-size: 20px;
    transform: translate(750px, 340px);
}

.modal {
    position: fixed;
    justify-content: center;
    align-items: center;
    inset: 0;
    z-index: 2;
    background-color: rgba(88, 84, 77, 0.705);
    display: none;
}

.modal--active {
    display: flex;
}

.modal__window {
    position: relative;
    width: 50vw;
    min-height: 150px;
    background-color: rgb(193, 212, 149);
    border-radius: 20px;
    align-items: center;
    padding: 50px 20px 20px 20px;

}

.modal__close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    height: 2.3vh;
    width: 1.3vw;
    font-size: 20px;
    border-radius: 5px;
    background-color: rgba(255, 21, 21, 0.712);
    border: none;
    cursor: pointer;
    color: rgb(75, 3, 3);
}