.pop{
    background-color: rgba(0, 0, 0, 0.601);
    height: 100vh;
    width: 100vw;
    position: fixed;
    z-index: 7;
    top: 0;
}

.popup{
    color: rgb(239, 239, 239);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: .5em;
    position: fixed;
    z-index: 7;
    width: 30vw;
    min-width: 300px;
    background-color: rgb(0, 0, 0);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0px 2px 6px rgb(0, 0, 0);
}

.continue{
    color: rgb(0, 179, 255);
}

@media screen and (max-width: 1000px) {
    .popup{
        font-size: 0.7em;
    }
  }

@media screen and (max-width: 800px) {
    .popup{
        font-size: 1em;
    }
  }