/* FORMATTING */
.underline { text-decoration: underline; }
.strikethrough { text-decoration: line-through; }

.half-width { width: 70%; position: relative; left: 50%; transform: translateX(-50%); }
.full-width { width: 100%; position: relative; left: 50%; transform: translateX(-50%); }

/* FONTS */
@font-face {
    font-family: "Poppins";
    src: url("/content/fonts/Poppins.ttf");
}
/* all elements inherit this font */
body { font-family: "Poppins", arial, sans-serif; vertical-align: bottom; }
button { font-family: "Poppins", Arial, sans-serif; } /* for some reason buttons need a special invitation to the party */