/* GENERAL STARTS */
@font-face {
  font-family: "CooperHewitt-Medium";
  src: local("CooperHewitt-Medium"), local("CooperHewitt-Medium"), url("../../fonts/CooperHewitt-Medium.woff2") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "CooperHewitt-Bold";
  src: local("CooperHewitt-Bold"), local("CooperHewitt-Bold"), url("../../fonts/CooperHewitt-Bold.woff2") format("opentype");
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: CooperHewitt-Medium, sans-serif;
}

h1 {
  white-space: nowrap;
}

h1,
h2 {
  font-family: CooperHewitt-Bold, sans-serif;
  margin: 0;
}

b {
  font-family: CooperHewitt-Bold, sans-serif;
  letter-spacing: 2px;
}

.blue {
  color: #5f99ff;
}

* {
  color: #fff;
}

body {
  margin: 0;
  overflow-x: hidden;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #000;
}

.heroBackground {
  width: 100vw;
  background-color: #000;
  height: 45vw;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: hidden;
}

/* GENERAL ENDS */
.heroSection {
  width: 100vw;
  height: fit-content;
  position: relative;
  box-shadow: 0 5px 15px rgba(95, 153, 255, 0.05);
}

.heroImg {
  position: absolute;
  left: 30vw;
  bottom: 0;
  width: 40vw;
  height: 40vw;
  z-index: 2;
}

@keyframes fromLeft {
  0% {
    opacity: 0;
    transform: translateX(-30vw);
  }
  50% {
    opacity: 50%;
    transform: translateX(-15vw);
  }
  100% {
    opacity: 100%;
    transform: translateY(0);
  }
}
p {
  color: #999;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 1px;
}

button,
.btn {
  border: 2px solid #5f99ff;
  border-radius: 5px;
  padding: 0.75vw 1vw;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
button svg,
.btn svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 1rem;
}
button svg path,
.btn svg path {
  fill: #fff;
}
button b,
.btn b {
  font-size: 16px;
}
button:hover,
.btn:hover {
  background-color: rgba(95, 153, 255, 0.2);
  border: 2px solid rgba(0, 0, 0, 0);
}

a {
  text-decoration: none;
}

html body .hidden {
  display: none;
}

.disabled {
  opacity: 0.6;
  pointer-events: none;
}

.fixedButtons {
  position: fixed;
  top: 3rem;
  left: 3rem;
  z-index: 3;
  animation: fromLeft 750ms linear;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.fixedLogo {
  width: 3vw;
  height: 3vw;
}

.backToBlogBtn {
  border: none;
  transform: translateX(-25%);
}
.backToBlogBtn svg {
  margin: 0 0.5rem 0 0;
}
.backToBlogBtn svg polygon {
  fill: #fff;
}

.articleBody {
  width: 50vw;
  padding: 2rem 25vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.blogImg {
  width: 50vw;
  height: 28.125vw;
  border-radius: 10px;
}

.paragraph {
  width: 100%;
  margin: 3rem 0;
}
.paragraph h2 {
  margin-bottom: 2rem;
}
.paragraph img {
  margin-top: 2rem;
}

h1 {
  font-size: 50px;
  margin: 3rem 0 3rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: start;
}

.articleIntro {
  margin-bottom: 2rem;
  width: 100%;
}

.articleHeroImg {
  border-radius: 10px;
  width: 100%;
}

.authorBadge {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
}

.authorImg {
  width: 4vw;
  height: 4vw;
  border-radius: 50%;
}

.authorImg {
  margin-right: 1rem;
}

.authorInfo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
}
.authorInfo b {
  font-size: 18px;
}
.authorInfo p {
  margin: 0.5rem 0 0 0;
  font-size: 14px;
}

footer {
  width: 70vw;
  padding: 4rem 15vw;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyrightContainer {
  display: flex;
  justify-content: center;
  align-items: center;
}
.copyrightContainer svg {
  width: 1vw;
  height: 1vw;
  margin-right: 0.25rem;
}
.copyrightContainer svg path {
  fill: #fff;
}

.copyrightYear {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bar {
  background-color: #5f99ff;
  margin: 0 0.75rem;
  height: 1rem;
  width: 2px;
}

.footerLogo {
  width: 3vw;
  height: 3vw;
}

@media (min-width: 901px) and (max-width: 1400px) and (orientation: landscape) {
  h1 {
    font-size: 36px;
  }
  .fixedLogo {
    width: 6vw;
    height: 6vw;
  }
}
@media (min-width: 601px) and (orientation: portrait) {
  .fixedLogo {
    width: 7vw;
    height: 7vw;
    top: 1.5rem;
    left: 1.5rem;
  }
  h1 {
    font-size: 36px;
  }
  footer {
    width: 90vw;
    padding: 2rem 5vw 4rem 5vw;
  }
  .copyrightContainer {
    font-size: 14px;
  }
  .copyrightContainer .bar {
    margin: 0 0.5rem;
  }
  .copyrightContainer svg {
    width: 3vw;
    height: 3vw;
  }
  .footerLogo {
    width: 7vw;
    height: 7vw;
  }
}
@media (max-width: 900px) and (orientation: landscape) {
  .fixedLogo {
    width: 8vw;
    height: 8vw;
  }
  .articleBody {
    width: 60vw;
    padding: 2rem 20vw;
  }
  .blogImg {
    width: 60vw;
    height: 33.75vw;
  }
  h1 {
    font-size: 36px;
  }
  .articleIntro {
    margin-bottom: 1rem;
  }
  .paragraph h2 {
    font-size: 18px;
  }
  .paragraph p {
    font-size: 12px;
  }
  .authorInfo b {
    font-size: 14px;
  }
  .authorInfo p {
    margin: 0.5rem 0 0 0;
    font-size: 12px;
  }
  .authorBadge {
    margin: 1rem 0;
  }
  .authorImg {
    width: 10vw;
    height: 10vw;
  }
  .backToBlogBtn svg {
    position: relative;
    left: 0.1rem;
    width: 1rem;
    height: 1rem;
  }
  .blogSubtitle {
    font-size: 24px;
  }
  .blogImgContainer .blogBadge {
    top: -1rem;
    right: -1rem;
    padding: 1.5rem;
  }
  .blogImgContainer .blogBadge b {
    font-size: 12px;
  }
  .blogArticleTitle {
    font-size: 16px;
  }
  footer {
    width: 90vw;
    padding: 2rem 5vw 4rem 5vw;
  }
  .copyrightContainer {
    font-size: 14px;
  }
  .copyrightContainer .bar {
    margin: 0 0.5rem;
  }
  .copyrightContainer svg {
    width: 3vw;
    height: 3vw;
  }
  .footerLogo {
    width: 7vw;
    height: 7vw;
  }
}
@media (max-width: 600px) and (orientation: portrait) {
  .fixedButtons {
    top: 0.5rem;
    left: 0.5rem;
  }
  .fixedLogo {
    width: 8vw;
    height: 8vw;
  }
  .backToBlogBtn {
    transform: translateX(0);
  }
  .backToBlogBtn b {
    display: none;
  }
  .backToBlogBtn svg {
    position: relative;
    left: 0.1rem;
    width: 1rem;
    height: 1rem;
    margin: 0;
  }
  .articleBody {
    width: 70vw;
    padding: 2rem 15vw;
  }
  .blogImg {
    width: 70vw;
    height: 39.375vw;
  }
  h1 {
    font-size: 24px;
    margin: 2rem 0;
  }
  .articleIntro {
    margin-bottom: 1rem;
  }
  .paragraph h2 {
    font-size: 18px;
  }
  .paragraph p {
    font-size: 12px;
  }
  .authorInfo b {
    font-size: 14px;
  }
  .authorInfo p {
    margin: 0.5rem 0 0 0;
    font-size: 12px;
  }
  .authorBadge {
    margin: 1rem 0;
  }
  .authorImg {
    width: 16vw;
    height: 16vw;
  }
  footer {
    width: 90vw;
    padding: 2rem 5vw 4rem 5vw;
  }
  .copyrightContainer {
    font-size: 14px;
  }
  .copyrightContainer .bar {
    margin: 0 0.5rem;
  }
  .copyrightContainer svg {
    width: 3vw;
    height: 3vw;
  }
  .footerLogo {
    width: 7vw;
    height: 7vw;
  }
  footer {
    width: 90vw;
    padding: 2rem 5vw;
  }
  .copyrightContainer {
    font-size: 10px;
  }
  .copyrightContainer .bar {
    margin: 0 0.35rem;
  }
  .copyrightContainer svg {
    width: 3vw;
    height: 3vw;
  }
  .footerLogo {
    width: 10vw;
    height: 10vw;
  }
}

/*# sourceMappingURL=article.css.map */
