.popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    top: 0;
    left: 0;
}
.popup_body {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
}
.popup_content {
    background-color: black;
    border: 1px solid rgb(0, 168, 225);
    width: 80%;
    padding: 80px 40px;
}
.popup_title {
    display: flex;
    justify-content: center;
    text-align: center;
    color: rgb(0, 168, 225);
    font: 48px Inter;
    font-weight: bold;
    margin: 0px auto;
    margin-bottom: 60px;
    width: 90%;
}
.popup_text {
    display: flex;
    justify-content: center;
    text-align: center;
    color: rgb(0, 168, 225);
    font: 32px Inter;
    font-weight: 300;
    margin: 0px auto;
    margin-top: 20px;
    width: 90%;
}

/* Large desktops and laptops */
@media (min-width: 1200px) and (max-width: 1650px) {

}

/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {

}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
    .popup_title {
        font: 42px Inter;
        font-weight: bold;
    }
    .popup_text {
        font: 28px Inter;
        font-weight: 300;
    }
}

/* Landscape phones and portrait tablets */
@media (min-width: 481px) and (max-width: 767px) {
    .popup_content {
        padding: 60px 20px;
    }
    .popup_title {
        font: 36px Inter;
        font-weight: bold;
    }
    .popup_text {
        font: 20px Inter;
        font-weight: 300;
    }
}

/* Portrait phones and smaller */
@media (min-width: 321px) and (max-width: 480px) {
    .popup_content {
        padding: 40px 10px;
    }
    .popup_title {
        font: 30px Inter;
        font-weight: bold;
        margin: 0px auto;
        margin-bottom: 40px;
    }
    .popup_text {
        font: 18px Inter;
        font-weight: 300;
        margin: 0px auto;
        margin-top: 30px;
    }
}

/* Iphone 5 */
@media (max-width: 320px) {
    .popup_content {
        padding: 30px 10px;
    }
    .popup_title {
        font: 24px Inter;
        font-weight: bold;
        margin: 0px auto;
        margin-bottom: 40px;
    }
    .popup_text {
        font: 16px Inter;
        font-weight: 300;
        margin: 0px auto;
        margin-top: 30px;
    }
}