@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

:root {
    --color-primary: #f38b29;
    --color-background: #101010;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
}

body {
    background-color: var(--color-background);
    color: white;

    font-family: "Outfit", sans-serif;

    height: 100dvh;
}

#container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;

    height: 100%;

    text-align: center;

    padding-inline: 1rem;
}

#internal-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

#container h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 600;
    color: var(--color-primary);
}

#container h2 {
    font-size: clamp(1.75rem, 3.5vw, 3.5rem);
    color: var(--color-primary);
}

#container p {
    font-size: clamp(1.25rem, 2.5vw, 2.5rem);
}
