@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

body {
    overflow: hidden;
    background-image: url(../back.svg);
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
}
        .modal {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgb(0, 0, 0);
        background-color: rgba(0, 0, 0, 0.4);
        animation: fadeIn 1s;
        
    }
    
    @media (max-width: 1000px) {
        .modal-content {
            max-width: 100% !important;
            width: 100% !important;
            height: 100%!important;
            border-radius: 0px !important;
            margin: 0px !important;
        }
        .modal_box {
            border: 0px !important;
            box-sizing: border-box !important;
            
            width: auto !important;
            display: block !important;
            margin-top: 50px !important;
            padding: 0px !important;
            padding-left: 0px !important;
        }
        
        .modal_inside p {
            margin-left: 0px !important;
            
        }
     
        .modal_inside button {
            margin-left: 0px !important;
            width: 98% !important;

        }
    }
    
    .modal-content {
        background-color: #fefefe;
        margin: 3% auto;
        max-width: 700px;
        border: 1px solid #888;
        z-index: 9999;
        position: relative;
        border-radius: 22px;
        box-sizing: border-box;
        animation: slideDown 0.5s;
    }
    
    .modal-content h2 {
        font-family: inter;
        font-size: 30px;
        text-align: center;
        margin-top: 30px;
        color: #0B5E77;
    }
    
    .modal_paragraph {
        color: #0B5E77;
        font-size: 24px;
        font-family: inter;
        margin-left: 22px;
    }
    
    .modal_title {
        font-family: inter;
        font-size: 30px;
        font-weight: 700;
        margin-left: 22px;
        margin-top: 30px;
        color: #0B5E77;
    }
    
    @keyframes fadeIn {
        from {opacity: 0;}
        to {opacity: 1;}
    }
    
    .modal_box {
        display: flex;
        margin-left: 22px;
        width: 68%;
        border-radius: 11px;
        padding: 20px;
        margin-bottom: 30px;
        box-sizing: border-box;
        border-left: 3px solid #0B5E77;
        border-right: 3px solid #0B5E77;
    }
    
    .modal_inside {
        display: block;
    }
    
    .modal_inside p {
        width: 200px;
        font-weight: 700;
        margin-top: 0px;
        color: #0B5E77;
        margin-left: 20px;
        font-size: 30px;
        font-family: inter;
    }
    .modal_inside button {
        margin-left: 20px;
        width: 200px;
        height: 60px;
        background-color: #0B5E77;
        border-radius: 8px;
        border: 0px;
        cursor: pointer;
        color: #fff;
        font-size: 22px;
        transition: background-color 0.3s ease;
    }
    .modal_inside button:hover {
        background-color: #0b5e77af;
    }
    .modal_inside button:focus {
        background-color: #1aafdd;
    }
    @keyframes slideDown {
        from {transform: translateY(-50px);}
        to {transform: translateY(0);}
    }