:root {
    --cor: #3D78E3;
    --bg: #050505;
    --texto: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Dosis', sans-serif;
    color: var(--texto);
    background: var(--bg);
}

/* HEADER */
header {
    padding: 25px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 97px;
}

.logo span {
    font-size: 1.8rem;
    font-weight: 500;
}

/* CENTER */
main {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.center h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.center p {
    color: #aaa;
}