/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@500&display=swap");

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

ul[class],
ol[class] {
    padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul[class],
ol[class],
figure,
blockquote,
dl,
dd {
    margin: 0;
}

/* Styles */

body {
    font-family: "Inter", sans-serif;
    line-height: 1.5;
    min-height: 100vh;
    background-color: #209cee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.big {
    font-size: 3rem;
    font-weight: 700;
}
