@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Quicksand:wght@300..700&display=swap');

html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-color);
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1, h2 {
    margin: 0;
    padding: 0;
}

h1 {
    font-family: "Pacifico", cursive;
    font-weight: 600;
    font-style: normal;
    font-size: 9rem;
    background: var(--header-text-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;
    color: var(--description-text-color);
}