@import url("https://rsms.me/inter/inter.css");
html {
  font-family: "Inter", sans-serif;
}
@supports (font-variation-settings: normal) {
  html {
    font-family: "Inter var", sans-serif;
  }
}
html * {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: #111118;
}
section {
  margin: 0 auto;
  padding: 50px;
  margin: 50px;
  background: #fff;
  border-radius: 6px;
  width: 1100px;
  max-width: 100%;
  text-align: center;
}
section .title-left {
  margin-top: 0;
  text-align: left;
  color: #0f172a;
  font-size: 50px;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 3px 8px rgba(15,23,42,0.133);
}
section .title-left.nomargin {
  margin: 0;
}
section .sub-left {
  text-align: left;
  color: #0f172a;
  text-shadow: 0 3px 8px rgba(15,23,42,0.133);
}
section h2.sub-left {
  margin: 0;
  font-size: 35px;
}
section a {
  display: inline-block;
  color: #0f172a;
}
section a.sub-sub {
  margin-top: 0;
  text-align: left;
  width: 100%;
}
section .text-left {
  text-align: left;
  color: #0f172a;
}
.logo-display-container {
  margin: 0 auto;
  margin-top: 40px;
  display: inline-flex;
  flex-wrap: nowrap;
}
.logo-display-container .logo-display {
  position: relative;
  border-radius: 8px 0 0 8px;
  width: 600px;
  height: 400px;
  margin: 25px;
  margin-top: 0;
  margin-right: 0;
  padding: 20px;
  background: #fff;
  border: solid 1px rgba(0,0,0,0.15);
  box-shadow: 0 7px 7px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-display-container .logo-display .bg {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 0;
  z-index: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px 0 0 8px;
  transition: max-width 0.3s;
}
.logo-display-container .logo-display .bg.active {
  max-width: 100%;
}
.logo-display-container .logo-display .bg-controls {
  position: absolute;
  width: 100%;
  height: 30px;
  top: -38px;
  right: 0;
  text-align: left;
}
.logo-display-container .logo-display .bg-controls a {
  margin: 0 8px;
  text-align: center;
  text-decoration: none;
  color: #0a4a76;
}
.logo-display-container .logo-display .bg-controls a:active {
  color: #bf3030;
}
.logo-display-container .logo-display .bg-controls a svg {
  height: 28px;
}
.logo-display-container .logo-display img {
  position: relative;
  height: 100%;
  z-index: 2;
}
.logo-display-container .downloads {
  width: 200px;
  height: 400px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}
.logo-display-container .downloads a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: #0f172a;
  box-shadow: 0 7px 7px rgba(0,0,0,0.1);
  color: #fff;
  text-decoration: none;
}
.logo-display-container .downloads a:hover {
  background: #15203a;
}
.logo-display-container .downloads a:active {
  background: #070a13;
}
.logo-display-container .downloads a:not(:nth-child(1)) {
  border-top: solid 2px rgba(255,255,255,0.667);
}
.logo-display-container .downloads a:nth-child(1) {
  border-radius: 0 8px 0 0;
}
.logo-display-container .downloads a:last-child {
  border-radius: 0 0 8px 0;
}
.font-using {
  width: 100%;
  display: inline-flex;
  flex-wrap: nowrap;
  text-align: left;
}
.font-using .left,
.font-using .right {
  margin: 15px;
}
.font-using .left {
  width: 60%;
}
.font-using .left .code {
  display: block;
  text-decoration: none;
  color: #111118;
  padding: 15px;
  border-radius: 8px;
  background: #eee;
  font-family: 'Courier New', Courier, monospace;
  text-align: left;
}
.font-using .left .code:hover {
  background: #e8e8e8;
}
.font-using .left .code:active {
  background: #ddd;
}
.font-using .left .code.just-copied {
  background: #c6eecd;
}
.font-using .right {
  width: 40%;
}
.font-using .right .download-button {
  display: inline-block;
  padding: 16px 20px;
  background: #eee;
  text-decoration: none;
  font-size: 15px;
  color: #111118;
  border-radius: 4px;
}
.font-using .right .download-button:hover {
  background: #e8e8e8;
}
.font-using .right .download-button:active {
  background: #ddd;
}
.font-controls {
  margin-top: 30px;
  display: flex;
  width: 600px;
  flex-wrap: nowrap;
}
.font-controls .column {
  width: 50%;
  height: 100%;
}
.font-controls .column label {
  display: inline-block;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
}
.font-controls .column input[type="range"] {
  margin-left: 15px;
}
.font-example {
  --var-weight: 900;
  --var-size: 55px;
  --var-lineHeight: 1.2;
  font-size: var(--var-size);
  line-height: var(--var-lineHeight);
  font-variation-settings: 'wght' var(--var-weight);
  word-wrap: break-word;
  max-height: 500px;
  overflow-y: hidden;
  transition: background-color 0.3s, color 0.3s;
  background: #fff;
  color: #111118;
  border: solid 1px rgba(0,0,0,0.15);
  box-shadow: 0 7px 7px rgba(0,0,0,0.1);
  border-radius: 8px;
  margin: 12px;
  padding: 20px;
}
.font-example.negative {
  background: #111118;
  color: #fff;
}
.colors-container {
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  width: 1000px;
  height: 250px;
}
.colors-container .color {
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.colors-container .color p {
  color: #fff;
  font-family: "Inter var";
  font-weight: 200;
}
.colors-container .color p.title {
  font-size: 30px;
  margin-bottom: 0;
}
.colors-container .color p.sub {
  font-size: 15px;
  margin-top: 0;
}
.colors-container .color a {
  display: none;
  background: rgba(255,255,255,0.067);
  border-radius: 6px;
  padding: 15px;
  margin: 18px;
  width: 100%;
  text-align: center;
  text-decoration: none;
  color: #fff;
}
.colors-container .color a:hover {
  background: rgba(255,255,255,0.133);
}
.colors-container .color a:active {
  background: rgba(255,255,255,0.051);
}
.colors-container .color:hover {
  padding: 30px 0;
}
.colors-container .color:hover p {
  display: none;
}
.colors-container .color:hover a {
  display: block;
}
.colors-container .color:not(:last-child) {
  border-right: solid 2px rgba(255,255,255,0.667);
}
.colors-container .color:nth-child(1) {
  border-radius: 8px 0 0 8px;
}
.colors-container .color:last-child {
  border-radius: 0 8px 8px 0;
}
