File size: 1,062 Bytes
			
			| dbac20f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 | body {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    height: 100%;
    max-width: 1000px;
}
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}
th {
    background-color: #f2f2f2;
}
video {
    width: 100%;
    height: auto;
}
p {
    font-size: 28px;
}
h2 {
    font-size: 36px;
}
.strong {
    font-weight: 700;
}
.light {
    font-weight: 100;
}
.heavy {
    font-weight: 900;
}
.column {
    float: left;
}
a:link,
a:visited {
    color: #05538f;
    text-decoration: none;
}
a:hover {
    color: #63cbdd;
}
hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
  }
  
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
} | 
