@import url("https://fonts.googleapis.com/css2?family=Playfair+Display+SC:wght@700&display=swap");

* {
    padding: 0;
    margin: 0;
}

body {
    height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    margin: 0 auto;
}

.container h1 {
    color: #fff;
    font-size: 5rem;
    font-family: "Playfair Display SC", serif;
}

.container p {
    color: #fff;
    max-width: 770px;
    font-family: sans-serif;
    letter-spacing: 1.5px;
    line-height: 25px;
    margin-bottom: 50px;
    justify-content: center;
    margin: 20px;
    text-align: center;
}

.container button {
    padding: 0;
    margin: 0;
    background: transparent;
    border: transparent;
    color: #fff;
    border: 2px solid white;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
}

/* javascripy */

div.cursor {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background-color: coral;
    border-radius: 50%;
    transform: translate(-50%, -50%);

}