@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300&display=swap');
*{
    padding: 0%;
    margin: 0%;
    font-family: 'Noto Sans', sans-serif;
}
body{
    background-color: aliceblue;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.pop{
    width: 50%;
    max-width: 700px;
    min-width: 300px;
    border: 2px solid white;
    background-color: white;
    font-weight: 400;
    padding: 10px;
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.116);
}
.pop p{
    margin-bottom: 15px;
}
h2{
    text-align: center;
    margin-bottom: 15px;
    user-select: none;
}
button{
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    height: 40px;
    color: white;
    border: none;
    outline: none;
    background-color: black;
    font-size: 20px;
    cursor: pointer;
}