body {
    background-color: rgb(244, 241, 234);
    float: left;
}
#main {
    width: 100%;
    min-height: 1000px;
    background-color: rgb(141, 173, 255);
    float: left;
}
#popup {
    width: 55%;
    height: fit-content;
    float: left;
    background-color: white;
    position: fixed;
    inset: 0px;
    max-width: 1000px;
    margin: auto;
    border-radius: 25px;
    border: 4px solid;
    border-color: #8BC34A;
    box-shadow: 0 0 10px #1c5e27;
    padding: 1rem;
    display: none;
    z-index: 500;
}
#popup_img_div {
    width: 100%;
    height: 25px;
    float: left;
}
#popup_img {
    float: right;
    transition: 500ms;
}
#popup_img:hover {
    background-color: #ab9386;
    transition-duration: 150ms;
    cursor: pointer;
    filter: invert(1);
    transition: 500ms;
}
#popup_text_div {
    width: 100%;
    height: fit-content;
    margin-left: 0px;
    float: left;
    text-align: center;
}
#popup_text {
    float: left;
    width: 100%;
    height: fit-content;
    text-align: center;
    font-size: 20px;
}
#popup_odeslat {
    margin-inline: auto;
    margin-bottom: 2%;
    margin-top: 3%;
    width: 100%;
    height: 65%;
    transition: 500ms;
    align-content: center;
}
#odeslat:hover {
    cursor: pointer;
    background-color: #546c79;
    color: white;
    transition: 500ms;
}
#odeslat {
    margin-inline: auto;
    margin-bottom: 2%;
    margin-top: 3%;
    width: 25%;
    height: 65%;
    display: block;
    border-radius: 10px;
    font-size: 20px;
    border-color: #8BC34A;
    background-color: white;
    color: #546c79;
    transition: 500ms;
}