*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
    font-family: 'Courier New', Courier, monospace;
}
header, h1, h2, h3, h4,
article, section, aside,
ul, ol, li, p{
    margin: 1vw;
}
header{
    font-size: 3rem;
    margin: 3rem;
    text-align: center;
    background: url("triangle.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
header, h1, h2, h3{
    display: block;
    font-family: 'Georgia', serif;
}
h1{
    font-size: 3rem;
    text-align: center;
}
h2{
    font-size: 2rem;
}
h3, h4{
    font-style: italic;
    font-weight: 300;
}
a{
    color: black;
    border-bottom: 4px solid black;
}
a::after{
    content: "\2197";
}
a:hover, a:active{
    background: black;
    color: white;
    transition: .4s;
}
article, aside{
    margin: 0;
}
aside::before{
    content: "&";
}
ul{
    list-style-position: inside;
    list-style-type: square;
}
li{
    border-bottom: 1px dashed black;
}
button, .btn{
    padding: 1rem;
    border: 3px solid black;
    background-color: #eee;
    color: black;
    text-decoration: none;
    text-transform: uppercase;
    margin: 1vh 0 1vh 0;
}
button:hover, .btn:hover{
    background-color: #000;
    color: white;
}
footer{
    display: flex;
    justify-content: flex-end;
}
.box{
    text-align: center;
    max-width: 100%;
    padding: 3vh;
}
.card{
    max-width: 20vw;
}
.card > p{
    text-align: left;
}
.lightBg{
    background-color: #eee;
}
.darkBg{
    background-color: #333;
    color: white;
}
.codeTerm{
    background: #eee;
    color: #333;
    display: inline-block;
    padding: 0 1vh 0 1vh;
}
.speechBubble{
    background: url("speech-bubble.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-15deg);
}
.twoColumnGrid{
    display: grid;
    width: 100%;
    text-align: center;
}
.twoColumnGrid > *{
    margin: 0;
    overflow-wrap: break-word;
    padding: 1rem;
}
.twoColumnGrid{
    grid-template-columns: repeat(2, 1fr);
}
.twoColumnGrid > *{
    max-width: 50vw;
}
@media only screen and (max-width: 750px){
    *{
        font-size: 16px;
    }
    img{
        width: 50%;
        height: auto;
    }
}