Вы должны вычесть край
.pop-box {
position: absolute;
top: 0;left: 0;bottom: 0;right: 0;
margin: auto;
width: 890px;
height: 490px;
border: 5px solid black;
background: orange;
}
@media (max-width:600px) and (min-width:0) {
.pop-box {
background: green;
width: 490px;
height: 190px;
}
}
@media (max-width:800px) and (min-width:601px) {
.pop-box {
background: red;
width: 590px;
height: 90px;
}
}
<div class='pop-box'></div>