@import url('https://fonts.googleapis.com/css2? family= Noto+Sans+Mono & display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:wght@300&display=swap');

*{
    margin: 0px;
    padding: 0px;
}

header{
    background-color: black;
    color: white;
    text-align: center;
    padding-bottom: 30px;
}

h3{
    text-align: center;
    padding-bottom: 15px;
    font-family: 'Noto Sans Mono', monospace;
    font-size: 25px;
}

body{
    background-color: black;
    margin: auto;
    max-width: 800px;
    min-width: 280px;
}

article{
    padding: 40px;
    
    margin: auto;
    background-color: white;
    border-radius: 5px;
}

article > p{
    font-family: 'IBM Plex Serif', serif;
    padding-bottom: 25px;
    font-size: 20px;
    text-align: justify;
}

a{
    text-decoration: none;
    color: rgb(0, 0, 174);
}


div{
    margin: auto;
    text-align: center;
    
}

footer{
    text-align: center;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: white;
    font-family: 'IBM Plex Serif', serif;
    font-weight: bold;
}