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

:root{
    --color1: #fafafa;
    --color2: rgba(0, 0, 0, 0.973);
    --color3: #FF8000;
    --color4: #424B54;
    --text-ligero: 300;
    --text-normal: 400;
    --text-grueso: 700;
    --text-supergrueso: 900;
    --normal:1.2rem;
    --titulo1: 5rem;
    --titulo2: 4rem;
    --totulo3: 2rem

}

*{
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    /* border: 2px solid red; */
}

body{
    overflow-x: hidden;
}

html{
    font-size: 62.5%;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}