@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    display: flex;
    flex-direction: column;
    flex: 1;
    background: rgb(2,0,36);
    background: linear-gradient(13deg, rgba(2,0,36,1) 0%, rgba(255,0,189,1) 0%, rgba(124,0,255,1) 67%);
}

header {
    display: flex;
    flex-direction: row;
    padding: 10px;
    height: 50px;
    margin: 10px;
    align-items: center; /* Centraliza os itens verticalmente */
}

.logo {
    font-family: "DM Serif Display", serif;
    text-decoration: none !important;
    font-size: 27px;
    margin-left: 30px;
}

a {
    font-family: "DM Serif Display", serif;
    text-decoration: none !important;
    color: rgb(255, 255, 255);
}

.login-up {
    display: flex;
    align-items: center;
    margin-left: 20px; /* Espaçamento entre os itens */
}

.links {
    margin-left: auto; /* Empurra a seção de links para a direita */
    display: flex;
    align-items: center;
}

.links a {
    margin: 0px; /* Espaçamento entre os links */
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.links p {
    margin: 20px; /* Espaçamento entre os links */
    font-size: 20px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: white;
}
