@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
* {
    margin: 0; padding: 0;
    user-select: none;
}

html {
    font-size: 24px;
    font-family: "Roboto";
}

body {
    background-color: #2f3136;
    color: #fff;

    margin: 0 auto;
    text-align: center;

    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

    height: 100vh;
    flex-direction: column;
}

a {
    color: #E63B7A;
    text-decoration: none;
}