@font-face {
  font-family: Inter;
  src: url(../fonts/inter.ttf);
}

body {
    margin: 0;
    background-color: black;
    font-family: Inter;
    color: white;
}

h1, h2, p {
    margin: 0;
}

a {
    color: inherit;
}
a:focus {
    outline: none;
}

address, cite {
    font-style: normal;
}

main {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 300;
}

main h1 {
    font-weight: inherit;
    font-size: 4em;
    text-align: center;
}

main p {
    font-size: 2em;
}

/*Mobile and tablet (portrait)*/
@media only screen and (min-width: 840px) {

    main {
        margin: 0 auto;
        max-width: 1600px;
    }    
}
