
h1, h2, h3, p, ul, ol {
    font-family: 'BabasNeue', sans-serif;
    margin: 0;
}
h1{
    font-size: 64px;
}
h2{
    font-size: 48px;
}
h3{
    font-size: 32px;
}
p, ul{
    font-size: 24px;
}
.fonted{
    font-family: 'BabasNeue', sans-serif;
}
.regtext{
    font-family: 'PublicSans', sans-serif;
}
.biggertext{
    font-size: 24px;
}
.nodec{
    text-decoration: none;
}
.link{
    color:rgb(87, 49, 255);
}
.indexlink{
    color:rgb(26, 184, 110);
}

.flex{
    display: flex;
}
.flexgrow{
    flex-grow: 1;
}
.flexwrap{
    flex-wrap: wrap;
}
.capped60{
    max-width: 60%;
}
.split{
    justify-content: space-between;
}
.vert{
    flex-direction: column;
}
.gap{
    gap:8px;
}
.biggap{
    gap:16px;
}
.gigagap{
    gap:24px;
}
.align{
    align-items: center;
}
.alignbase{
    align-items: baseline;
}

.top_pad{
    padding-top: 8px;
}
.underline{
    text-decoration: underline;
}
.italicize{
    font-style: italic;
}
a:hover{
    text-decoration: underline;
}

.marquee {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    background-color: yellow;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 64s linear infinite;
}
@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

@media (max-width: 1200px) {
    .mediasmallvert{
        flex-direction: column;
    }

}

@font-face {
  font-family: 'PublicSans';
  src: url('fonts/PublicSans-VariableFont_wght.ttf') format('truetype');
}
@font-face {
  font-family: 'BabasNeue';
  src: url('fonts/BebasNeue-Regular.ttf') format('truetype');
}