@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&amp;display=swap');

*
{
    margin:0;
    padding:0;
    box-sizing: border-box;

}

.popup
{
    position: fixed;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    display: none;
    z-index: 7;
}

.contentbox
{
    position: relative;
    width: 348px;
    height: 482px;
    background: white;
    padding: 20px;
    display: flex;
    border: 2px solid black
}

.close
{
    position: absolute;
    top:3px;
    right:3px;
    width:40px;
    height:40px;
    background: grey url(assets/img/close.html);
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;

}