#rty-modal-overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(1, 1, 1, 0.4);
    z-index: -1;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}
#rty-modal-overlay.active {
    opacity: 1;
    z-index: 2;
    transition: 600ms ease-in-out;
}
#rty-modal-main-cont {
    position: relative;
    background-color: var(--distro-drk-green);
    color: white;
    width: 25rem;
    height: 35rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 8rem;
    text-align: center;
}
#rty-modal-main-cont p,
#rty-modal-main-cont h1 {
    margin-bottom: 1rem;
}
#rty-modal-btn {
    border: none;
    padding-inline: 2rem;
    background-color: black;
    color: white;
}
#rty-modal-main-cont img {
    width: 16rem;
}
#rty-img-cont {
    font-size: 0.64rem;
    position: absolute;
    bottom: 2rem;
}
