@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

*{
    padding: 0;
    margin: 0;
    font-family: 'Share Tech Mono', monospace;
}

body{
    background: #222;
}

.container{
    width: calc(100% - 10px);
    height: calc(50vh - 10px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 5px;
}

.space{
    margin-bottom: 20px;
}

h2{
    font-size: 30pt;
}

p{
    font-size: 20pt;
}

h3{
    font-size: 18pt;
}

span{
    font-weight: 100;
    font-size: 14pt;
}

.flex{
    display: flex;

}

@media screen and (max-width: 800px) {
    .flex{
        flex-direction: column;
    }
}