@import url('https://fonts.googleapis.com/css2?family=Frijole&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background-color: transparent;
    color: transparent;
}

body {
    background-color: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    font-size: 300px;
    font-family: "Frijole", serif;
    color: #cb83f4;
    text-shadow: 0 0 30px #cb83f4;
    user-select: none;
}

@media screen and (max-width: 1000px) {
    body {
      font-size: 100px;
    }
}