body{
    background-color: rgb(21, 21, 21);
    color: white;
    font-family: 'Poppins';
}

div {
    height: 200px;
    width: 400px;
    background: black;

    position: fixed;
    top: 45%;
    left: 50%;
    margin-top: -100px;
    margin-left: -200px;
}

img {
    pointer-events: none;
}

.selector {
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

button{
    width: 460px;
    height: 50px;
    background-color: rgba(63, 63, 63, 0.308);
    border-radius: 3px;
    border: 0px;
    color: white;
    cursor: pointer;
    font-size: 20px;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Regular.ttf');
}