body {
    height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
    font-family: sans-serif;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

h1 {
    color: #fff;
    font-size: 4rem;
}

p {
    color: #fff;
    max-width: 700px;
    letter-spacing: 2px;
    line-height: 22px;
    margin-bottom: 40px;
}

button {
    padding: 0;
    margin: 0;
    background: transparent;
    border: transparent;
    color: #fff;
    border: 2px solid white;
    font-weight: bold;
    padding: 10px 20px;
    text-transform: uppercase;
}

/* javascript */

div.cursor {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 15px;
    background: white;
    border-radius: 50%;
    transform: translate(-50% ,-50%);
}
