@import url('./background.css');
@import url('./header.css');
@import url('./main.css');

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

a, p{
    font-family: Outfit;
}

:root{
    --text: #FFF;
    --blue: #002aff;
    --fundo: linear-gradient(109deg, rgba(10, 12, 16, 0.99) 15%, rgba(10, 12, 16, 0.7) 50%, rgba(10, 12, 16, 0.99) 85%);
    --yellow: #ffc12b;
    --green: #14B02D;

}

body, button, a {
    color: var(--text);
}

a {
    text-decoration: none;
}

button:hover {
    cursor: pointer;
}

#app {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    height: 100vh;
}