* {
    margin: 0;
    padding: 0;
    color: white;
    font-size: 16px;
    font-family: monospace;
}

body {
    background-color: black;
    padding: 30px;
}

.masterfakeroot {
    gap: 30px;
}

/** utility classes **/
.center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.max70percent {
    max-width: 70%;
}

main {
    width: 100%;
    position: relative;
}

ul {
    padding-left: 20px;
}

/** typography **/
main h1:not(:last-child), 
main p:not(:last-child),
main h2:not(:last-child) {
    margin-bottom: 10px;
}

h1, h1 * {
    font-size: 32px;
    text-decoration: none;
}

h2, h2 * {
    font-size: 28px;
    text-decoration: none;
}

hr {
    width: 100%;
    flex-grow: 1;
}

/** cards **/
.card {
    padding: 10px;
    border-radius: 10px;
    background-color: #131313;
    display: flex;
    gap: 10px;
}

.card img {
    max-height: 85px;
    border-radius: 10px;
}

/** images **/ 
main div.center img {
    max-width: 80%;
    margin-bottom: 5px;
}
