/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: sans-serif;
}
body {
	line-height: 1;
    padding-top: 50px;
    width: 100vw;
    height: 100dvh;
}
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: rgb(20,20,35);
    color: rgb(180,180,195);
    font-family: sans-serif;
    font-size: 24pt;
    line-height: 1.5;
    padding-left:  1%;
}

h1 {
    font-size: 32pt;
}
h2 {
    font-size: 24pt;
}
hr {
    margin-top: 10px;
}

.section {
    position: relative;
    margin: 10px;
    padding: 10px;
    line-height: 1.5;
}
.section p {
    margin-bottom: 20px;
}
.section button {
    position: absolute;
    bottom: -10px;
    right: 20px;
    margin: auto;
    height: 40px;
    min-width: 100px;
    width: auto;
    padding: 10px;
    border: none;
    border-radius: 10px;
    color: rgb(20,20,35);
}