* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "murmure";
    src: url(./assets/fonts/LeMurmure-Regular.woff2);
}

:root {
    --bg-color: #f4f4f4;
}

body {
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: var(--bg-color);
}

h1 {
    font-family: "murmure", sans-serif;
    font-size: 9.5rem;
    line-height: 0.9;
}

p {
    font-family: "Handlee", handwriting;
    font-size: 2rem;
}

