@font-face {
    font-family: 'dot';
    src:  url('../type/timesdotrom-webfont.woff2') format('woff2'),
          url('../type/timesdotrom-webfont.woff') format('woff');
  } 

  @font-face {
    font-family: 'dotItalic';
    src:  url('../type/times_dot-italic-webfont.woff2') format('woff2'),
          url('../type/times_dot-italic-webfont.woff') format('woff');
  } 


body {
    background-color: #FAF8F5;
    display: flex;
    flex-direction: column;
    font-family: "dot";
    /* margin-top: 10vh; */
}

i, em {
    font-family: "dotItalic";
}

a {
    color: black;
    text-decoration: underline;
    font-size: 24px;
}

br.break {
    margin-bottom: 1em;
}

.textColumn {
    width: 33%;
    line-height: 1.3;
}

header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    padding: 24px;
    padding-bottom: 0px;
    margin-bottom: 24px;
    background-color: #FAF8F5;
    box-shadow: 0 0 20px 24px #FAF8F5;
    z-index: 100;
    
}

header div{
    display: flex;
    flex-direction: row;
}
header #tireSelector {
    margin-right: 8px;
}

h2{
    font-size: 36px;
}

.headerElement{
    transition: .3s;
    border: 1px solid black;
    padding: 8px;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: 2em;
    text-decoration: none;
}
.headerElement a {
    text-decoration: none;
}
.headerElement:hover{
    transition: .3s;
    border: 1px solid #FAF8F5;
    box-shadow: 0px 0px 20px #FAABE4;
}
















