@charset "UTF-8";

/* font */

@font-face {
  font-family: hostgrotesk;
  src: 
    url('HostGrotesk-VariableFont_wght.ttf') format('truetype');
  font-weight: 300-800;
  font-style: normal;
}

/* grid template set up */

.container {
  display: grid;
  grid-template-columns: repeat(6, 136px);
  grid-template-rows: repeat(8, 130px);
  margin-top: 150px;
  margin-bottom: 150px;
  margin-left: 300px;
  margin-right: 300px;
  column-gap: 100px;
  row-gap: 80px;
  font-family: hostgrotesk, sans-serif;
  }

/* .container div {
  background-color: dodgerblue;
} */

/* design columns rows set up */

.a {
    grid-column: 1;
    grid-row: 1 / 3;
}

.b{
    grid-column: 2 / 4;
    grid-row: 1 / 3;
}

.c{
    grid-column: 4 / 6;
    grid-row: 1 / 3;
}

/* header/page setup */

p{
    margin-top: 0px;
    font-size: 18px;
    line-height: 26px;
}

p+p{
    margin-top: 24px;
}

a{
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    color: black;
    line-height: 50px;
}

a:hover{
    color: #CE0000;
    font-weight: 800;
}

.active{
    font-weight: 800;
    font-size: 30px;
    text-decoration: underline;
    color: #CE0000;
    line-height: 70px;
}

nav{
    transform: translate(35px, 40px) rotate(10deg);
}

.question{
    transform: translate(-25px,128px) rotate(10deg);
    font-size: 20px;
    font-weight: 500;
}

img{
    border: 5px solid #CE0000;
}

#ElLissitzky{
    font-size: 68px;
    font-weight: 800;
    text-orientation: sideways;
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
    color: #CE0000;
}

/* alignments */

.right-align{
    display: flex;
    justify-content: right;
}

.bottom-align{
    display: flex;
    align-items: flex-end;
}