@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

@import url(main.css);
@import url(media.css);

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --Purple-100: hsl(254, 88%, 90%);
    --Purple-500: hsl(256, 67%, 59%);
    --Yellow-100: hsl(31, 66%, 93%);
    --Yellow-500: hsl(39, 100%, 71%);
    --White: hsl(0, 0%, 100%);
    --Black: hsl(0, 0%, 7%);

    --font-primaria: "DM Sans", sans-serif;
}

img {
    max-width: 100%;
    display: block;
}

body {
    background-color: #f2f2f2;
    min-height: 100vh;
    font-family: var(--font-primaria);
    font-size: 18px;
    line-height: 1;
    display: grid;
    place-content: center;
}

.extra-large {
    font-size: 4rem;
    font-weight: 500;
}

.large-text {
    font-size: 2.75rem;
    font-weight: 500;
}

.medium-text {
    font-size: 2.35rem;
    font-weight: 500;
}

.small-text {
    font-size: 1.5rem;
    font-weight: 400;
}