@import url("https://use.typekit.net/rxr4aib.css");

body {
    font-size: 40px;
    margin: 0;
    font-family: 'Industry', sans-serif;
    overflow: hidden;
}

.fullscreen {
    width: 100vw;
    height: 100vh;
}
.pos-tl {
    position: absolute;
    top: 0;
    left: 0;
}
.d-flex {
    display: flex;
}
.g-padding {
    padding: 40px;
    box-sizing: border-box;
}
.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.bg-center {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}


.horizontal-pad > div {
    margin: 0 .5em;
    flex-shrink: 0;
}
.horizontal-pad > div:first-child {
    margin-left: 0;
}
.horizontal-pad > div:last-child {
    margin-right: 0;
}
.vertical-pad > div {
    margin: .5em 0;
    flex-shrink: 0;
}
.vertical-pad > div:first-child {
    margin-top: 0;
}
.vertical-pad > div:last-child {
    margin-bottom: 0;
}
.h-100-fill {
    height: 100%;
    flex-shrink: 1 !important;
}
.w-100-fill {
    width: 100%;
    flex-shrink: 1 !important;
}
