* {
    margin: 0;
}

.button {
    font-size: 14px;
    font-weight: bold;

    padding: 15px;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    border-radius: 10px;

    cursor: pointer;
}

.popup {
    display: none;

    position: absolute;
    width: 20%;
    min-width: 300px;

    border:  darkgreen solid 5px;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    padding: 20px;
    background-color: #6B8E23;
    color: #F1F1F1;
    text-align: center;
    border-radius: 10px;

}

.class_div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 100%;

    gap: 20px;
    margin-top: 20px;
}

.class_div_1 {
    display: flex;
    width: 80%;
    justify-content: space-between;
}

/* Для планшетов и мобильных */
@media (max-width: 1750px) {
    .class_div_1, .class_div_2 {
        flex-direction: column;
    }

}
.class_div_2 {
    width: 80%;
    display: flex;
    justify-content: space-between;
}

.button2 {
    margin-top: 30px;
    width: 80%;
    height: clamp(10px, 5vh, 40px);
    margin-bottom: 30px;
}