/* FONT */

/**
* This is a variable font
* You can controll variable axes as shown below:
* font-variation-settings: 'wght' 400.0;
*
* available axes:

* 'wght' (range from 100.0 to 900.0)

*/

@font-face {
  font-family: 'Switzer-Variable';
  src: url('../fonts/Switzer-Variable.woff2') format('woff2'),
    url('../fonts/Switzer-Variable.woff') format('woff'),
    url('../fonts/Switzer-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}


/**
* This is a variable font
* You can controll variable axes as shown below:
* font-variation-settings: 'wght' 400.0;
*
* available axes:

* 'wght' (range from 100.0 to 900.0)

*/

@font-face {
  font-family: 'Switzer-VariableItalic';
  src: url('../fonts/Switzer-VariableItalic.woff2') format('woff2'),
    url('../fonts/Switzer-VariableItalic.woff') format('woff'),
    url('../fonts/Switzer-VariableItalic.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
  font-style: italic;
}




/* GLOBAL STYLES */

::selection {
  color: white;
  background: rgba(0, 0, 0, 0);
}

body {
  font-family: 'Switzer-Variable', Fallback, sans-serif;
  color: rgb(0, 0, 255);
  background-color: white;
  margin: 0;
  padding: 0;
  font-size: 3vw;
}

b {
  font-weight: 600;
}


a,
a:visited {
  text-decoration: none;
  color: inherit;
}

div.wrapper {
  width: 100%;
  text-align: center;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 45%;
  left: 50%;
}

span.weight {
  cursor: default;
  font-size: 45vw;
}

span.unit {
  position: absolute;
  bottom: 8%;
  right: 7%;
}

.info-wrapper {
  cursor: default;
  height: 100vh;
  display: grid;
  grid-template-columns: 10% 60% 30%;
  grid-template-rows: 15vh 60vh 25vh;
}

.info-wrapper .gradient {
  cursor: w-resize;
  grid-column: 1;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(to right, rgba(0, 0, 255, 0.3), rgba(0, 0, 255, 0));
}

.info-wrapper .gradient-two {
  cursor: w-resize;
  grid-column: 1;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(to right, rgba(255, 255, 255), rgba(0, 0, 255));
}

.info-wrapper .top-info {
  font-size: 2vw;
  line-height: 2.2vw;
  align-self: center;
  grid-column-start: 2;
  grid-column-end: 3;
}

.info-wrapper .textinfo {
  padding-right: 10vw;
  font-size: 1.8vw;
  line-height: 2.2vw;
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row: 2;
}


.info-wrapper .quote {
  font-size: 5vw;
  line-height: 5vw;
  grid-column: 2;
}

.info-wrapper .bottom-info {
  grid-row: 3;
  font-size: 2vw;
  line-height: 2.3vw;
  align-self: center;
  grid-column-start: 2;
  grid-column-end: 3;
}

.info-wrapper .reference {
  font-size: 2vw;
  line-height: 2.3vw;
  grid-row: 2;
  grid-column: 3;
  text-align: left;
  padding-right: 8vw;
}


.info-wrapper .reference-two {
  font-size: 1.8vw;
  line-height: 2.2vw;
  grid-row: 2;
  grid-column: 3;
  text-align: left;
  padding-right: 2vw;
}



footer {
  width: 100%;
}

.f1,
.f2,
.f3 {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  text-align: right;
  font-size: 12px;
  padding: 10px 5%;
  min-width: 200px;
  width: 33.3%;

}



@media screen and (max-width:500px) {

  .info-wrapper {
    grid-template-rows: 10vh 50vh 10vh 30vh;
  }

  .info-wrapper .quote {
    font-size: 7.6vw;
    line-height: 8vw;
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row: 2;
    align-self: end;
  }

  .info-wrapper .top-info {
    align-self: end;
    font-size: 4vw;
    line-height: 4.4vw;
  }

  .info-wrapper .textinfo {
    padding-top: 5vw;
    padding-right: 10vw;
    font-size: 4vw;
    line-height: 4.4vw;
    align-self: bottom;
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row: 2;
    height: max-content;
  }

  .info-wrapper .reference-two {
    padding-top: 5vw;
    padding-right: 10vw;
    font-size: 4vw;
    line-height: 4.4vw;
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row: 4;
    align-self: end;
  }

  .info-wrapper .bottom-info {
    font-size: 4vw;
    line-height: 4.4vw;
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row: 4;
    align-self: end;
  }

  .f1,
  .f2,
  .f3 {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    text-align: right;
    font-size: 12px;
    padding: 10px 5%;
    min-width: 140px;
    width: 20%;
  }


}
