body{
    padding: 0;
    margin: 0;
}

.prompt{
    padding: 0;
    margin: 0;

    height: 100vh;
    width: 100%;

    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #f3f3f3;

    font-family: sans-serif;
}

.prompt-box{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; 
    border-radius: 5px;
    
    min-height: 400px;
    max-height: 500px;
    width: 750px;
    max-width: 90%;

    border: 2px solid #cccccc;

    box-sizing: border-box;
    padding: 30px;

    text-align: center;

    background-color: white;
}

.prompt-info{
    height: 500px;
    max-width: 90%;
    border: 1px solid #cccccc;
    overflow-y: scroll;
    box-sizing: border-box;
    padding: 10px;
    border-radius: 5px;

    text-align: left;

    color: #7f7f7f;
}

.prompt-btn{
    display: flex;
    align-items: center;
    justify-content: center; 
}

.exit,.iagree{
    height: 35px;
    width: 150px;
    border: 1px solid #cccccc;
    border-radius: 5px;

    display: flex;
    align-items: center;
    justify-content: center; 
    
    cursor: pointer;
}

.iagree{
    background-color: #85CB33;
    margin-left: 10px;
}

.gtrtgr{
    margin-bottom: 15px;
}

.prompt-box p a{
    color: #7f7f7f;
}

@media only screen and (max-width: 450px){
    .prompt-btn{
        flex-direction: column;
    }

    .iagree{
        margin-left: unset;
        margin-top: 10px;
    }
}