@import url('https://fonts.googleapis.com/css2?family=Grandstander:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --background: #ffffff;
    --foreground: #eee6e6;
    --thirdground: #ff8b8b;
    --primary: #131212;
    --secondary: #b80404;
    --secondary-foreground: #ffffff;
    --hero-background: #f3f3f3;
}

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

::-webkit-scrollbar{
    display: none;
}

html{
    font-family: "Lato", sans-serif;
    font-size: 62.5%;
}

body{
    background-color: var(--background);
    color: var(--primary);
    font-size: 1.6rem;
}

.container{
    width: 100%;
    max-width: 1400px;
    margin: auto;
}

.button, .button2{
    display: inline-block;
    background-color: var(--secondary);
    border: 2px solid var(--secondary);
    color: var(--secondary-foreground);
    padding: 2rem 4rem;
    font-size: 2rem;
    border-radius: 15px;
    text-decoration: none;
}

.button2{
    background-color: var(--background);
    color: var(--secondary);
}

.button:hover, .button2:hover{
    opacity: 0.8;
}