@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Monoton&display=swap');

@font-face {
    font-family: 'DotsAll';
    src: url("assets/DotsAllForNow.ttf");
}

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

body {
    background-color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: "JetBrains Mono", monospace;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 100;
    width: 100vw;
    height: 100vh;
}

.main {
    display: flex;
    flex-direction: column;
    width: 90%;
    height: 100%;
    padding: 20px;
    justify-content: space-evenly;
}

.bio {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bio h1 {
    font-size: 1.7em;
    margin-bottom: 15px;
}

.bio p {
    font-size: 1em;
}

h1, h2, h3 {
    font-family: 'DotsAll';
    font-weight: normal;
    font-size: 3em;
}

.dados ul{
    display: flex;
    flex-direction: column;
    justify-content: center;
}