@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800");

html {
    margin: 0;
    height: 100vh;
    width: 100vw;
}

body {
    height: 100%;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgb(209 213 219);
    background-color:#161929;
    padding: 1.5rem;
    margin: 0;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr;
}

h1 {
    font-size: 24px;
    font-weight:400;
}

header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    column-gap: 2rem;
    align-items: center;
}

header > h1 {
    font-size: 24pt;
    font-weight: 600;
}

header .user img {
    display: inline-block;;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    vertical-align: middle;
    margin-left: 1rem;
    border: 1px solid lightskyblue;
    background-color: white;
}

header .user {
    font-size: 14pt;
}

main {
    overflow: auto;
    padding-bottom: 3.5rem;
}

a {
    color: lightskyblue;
}

a:visited {
    color: lightsalmon;
}