@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

:root {
    font-size: 16px;
}

:root {
    --primary: #203764;
    --primaryAlpha: #203764bf;
    --primaryLight: #2b4478;
    --primaryDark: #0a101f;
    --secondary: #c7c7c7;
    --secondaryAlpha: #c7c7c7bf;
    --terciary: #ffffff;
    --terciaryAlpha: rgba(255, 255, 255, 0.75);

    --fontTittle: 700 2rem "Roboto", sans-serif;
    --fontSubtittle: 600 1.5rem "Roboto", sans-serif;
    --fontSub: 500 1.25rem "Roboto", sans-serif;
    --fontMessage: oblique 700 1rem "Roboto", sans-serif;
    --fontParagraph: 500 0.8rem "Roboto", sans-serif;
    --fontAnchor: 700 1.1rem "Roboto", sans-serif;

    --padding: 1rem;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0px;
    background-color: var(--secondary);
    font-family: "Roboto", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--primary);
    text-decoration: none;
    font: var(--fontAnchor);
}

button {
    width: fit-content;
    height: fit-content;
    margin: 0px auto;
    background-color: transparent;
    border-radius: 5px;
    padding: 0px;
}

h1 {
    font: var(--fontTittle);
}

h2 {
    font: var(--fontSubtittle);
}

h3 {
    font: var(--fontSub);
}

p {
    font: var(--fontParagraph);
}

@media screen and (min-width: 768px) {
    :root {
        --fontTittle: 700 4rem "Roboto", sans-serif;
        --fontSubtittle: 600 2.5rem "Roboto", sans-serif;
        --fontSub: 500 2rem "Roboto", sans-serif;
        --fontMessage: oblique 700 2.5rem "Roboto", sans-serif;
        --fontParagraph: 500 2rem "Roboto", sans-serif;
        --fontAnchor: 700 1.8rem "Roboto", sans-serif;
    }
}

/* Pantallas medianas */
@media screen and (min-width: 992px) {
}

/* Pantallas grandes */
@media screen and (min-width: 1200px) {
    :root {
        --fontMessage: oblique 700 4rem "Roboto", sans-serif;
    }
}
