@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:wght@700&display=swap');

/*===RESET===*/

/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
    padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
    font-weight: normal;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
    list-style: none;
}

/* Make images easier to work with */
img {
    max-width: 100%;
    display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}

/*===STYLING===*/

body {    
    background-color: black;
    color: rgb(51, 255, 0);
    font-family: 'IBM Plex Serif', serif;
    height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
}
.container {
    height: 100%;
    display: grid;
    align-self: center;
    justify-content: center;
}

.container p{
    display: grid;
    align-self: center;
    font-size: 2.5rem;
    font-weight: 700;
}