/* Color variable based on role */
/* Breakpoints for different screen sizes */
/* Font variables */
/* Breakpoints */
/* Glow effects */
*,
*::before,
*::after {
  box-sizing: border-box;
}

*:not(dialog) {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* All the font declarations */
@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/JetBrainsMono-2.304/fonts/webfonts/JetBrainsMono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/JetBrainsMono-2.304/fonts/webfonts/JetBrainsMono-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Main style font */
body {
  font-family: "JetBrains Mono", "Courier New", monospace;
}

body {
  background: black;
  color: silver;
  min-height: 100vh;
}

.header-sentinel {
  position: absolute;
  top: 0;
  width: 1px;
  height: 1px;
}

.mainHeader {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 150px;
  background: black;
  border-bottom: 5px solid blue;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  box-shadow: 0 0 30px 10px blue;
  position: sticky;
  z-index: 10;
  top: 0;
  transition: height 0.3s ease;
}
.mainHeader.is-scrolled {
  height: 75px;
}
.mainHeader .navigation {
  width: 100%;
  align-self: center;
}
.mainHeader .navigation .navItems {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  column-gap: 16px;
  padding: 0 12px;
}
.mainHeader .navigation .navItems .navItem {
  text-decoration: none;
  color: silver;
  font-size: 25px;
  padding: 3px;
  font-weight: bold;
  border-radius: 10px;
  transition: box-shadow 0.3s ease;
}
.mainHeader .navigation .navItems .navItem:hover {
  box-shadow: 0px 0px 12px 6px blue, inset 0px 0px 12px 2px blue;
}

.mainFooter {
  width: 100%;
  height: 150px;
  display: flex;
  flex-direction: row;
  background: black;
  border-top: 5px solid blue;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  box-shadow: 0 0 30px 10px blue;
}
.mainFooter .footerNav {
  width: 100%;
  align-self: center;
}
.mainFooter .footerNav ul {
  display: flex;
  list-style: none;
  flex-direction: row;
  justify-content: space-evenly;
  column-gap: 16px;
  padding: 0 12px;
}
.mainFooter .footerNav ul .listItem {
  text-decoration: none;
  color: silver;
  font-size: 22px;
  font-weight: bold;
  transition: box-shadow 0.3s ease;
}
.mainFooter .footerNav ul .listItem:hover {
  box-shadow: 0px 0px 12px 6px blue, inset 0px 0px 12px 2px blue;
}

.main-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 30px 10px;
}
@media screen and (min-width: 576px) {
  .main-container {
    margin: 40px 30px;
  }
}
@media screen and (min-width: 768px) {
  .main-container {
    margin: 40px 120px;
  }
}
@media screen and (min-width: 992px) {
  .main-container {
    margin: 40px 160px;
  }
}
@media screen and (min-width: 1200px) {
  .main-container {
    margin: 40px 260px;
  }
}
@media screen and (min-width: 1400px) {
  .main-container {
    margin: 40px 400px;
  }
}
@media screen and (min-width: 1600px) {
  .main-container {
    margin: 40px 500px;
  }
}
@media screen and (min-width: 1900px) {
  .main-container {
    margin: 40px 600px;
  }
}

.btn {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid blue;
  color: blue;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  align-self: center;
  margin-block: 2rem;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
  cursor: pointer;
  color: black;
  background: blue;
  box-shadow: 0px 0px 12px 6px blue;
}

.home-logo {
  transition: filter 0.3s ease;
  width: 250px;
  height: 250px;
  align-self: center;
  margin-bottom: 0;
}
.home-logo:hover {
  filter: drop-shadow(0 0 16px rgba(0, 26, 255, 0.8)) drop-shadow(0 0 18px rgba(0, 132, 255, 0.685));
}

.svg_content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.svg_content .svg-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 60px;
  align-items: center;
  align-self: center;
  margin: 5px 0;
}
@media screen and (min-width: 576px) {
  .svg_content .svg-container {
    height: 80px;
  }
}
@media screen and (min-width: 768px) {
  .svg_content .svg-container {
    height: 100px;
  }
}
@media screen and (min-width: 992px) {
  .svg_content .svg-container {
    height: 120px;
  }
}
@media screen and (min-width: 1200px) {
  .svg_content .svg-container {
    margin: 15px 0;
  }
}
@media screen and (min-width: 1900px) {
  .svg_content .svg-container {
    height: 130px;
  }
}
.svg_content .svg-container svg polygon {
  stroke: blue;
  stroke-width: 2;
  animation: glow 20s infinite;
}
@keyframes glow {
  0%, 100% {
    stroke-width: 2;
  }
  25% {
    stroke-width: 4;
    stroke: royalblue;
  }
  50% {
    stroke-width: 6;
    stroke: darkblue;
  }
  75% {
    stroke-width: 4;
    stroke: royalblue;
  }
}

.main-heading {
  text-align: center;
  font-size: 45px;
  line-height: 45px;
}

.text {
  text-align: left;
  font-size: 20px;
  line-height: 1.4;
}

.label-text {
  text-align: center;
}

.contact-form {
  width: 90%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 3px solid blue;
  box-shadow: 2px 2px 30px 5px blue;
  border-radius: 10px;
  align-self: center;
  padding: 20px;
  margin: 20px 0;
}
.contact-form button {
  margin: 25px 0;
  width: 120px;
  height: 40px;
}
.contact-form label {
  font-size: 18px;
  font-weight: bold;
}
.contact-form input {
  background: black;
  color: silver;
  border: 1px solid blue;
  border-radius: 10px;
  height: 30px;
  margin-bottom: 20px;
}
.contact-form textarea {
  background: black;
  color: silver;
  border: 1px solid blue;
  border-radius: 10px;
  height: 120px;
}
.contact-form .user-message__error {
  color: red;
  font-size: 18px;
  margin: 5px 0;
}
.contact-form .nope {
  display: none;
}
@media screen and (min-width: 576px) {
  .contact-form label {
    font-size: 22px;
  }
}

.portfolio-card {
  align-self: center;
  border: 3px solid blue;
  box-shadow: 2px 2px 30px 5px blue;
  display: flex;
  flex-direction: column;
  margin: 2rem 0;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .portfolio-card {
    padding: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .portfolio-card p {
    font-size: 18px;
  }
}
@media screen and (min-width: 1400px) {
  .portfolio-card .project-heading {
    font-size: 26px;
  }
}

body.os-wars {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  background-image: image-set("/playground/os_wars/images/background.png");
  background-repeat: no-repeat;
  background-size: cover;
}
body.os-wars .score {
  text-align: center;
  width: 100%;
}
body.os-wars .score .mainScore {
  color: white;
  font-size: 24px;
}
body.os-wars .main-clicker-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
body.os-wars .main-clicker-container .button-container {
  display: flex;
  width: 300px;
  height: 300px;
  object-fit: contain;
  cursor: pointer;
  border: 3px solid cyan;
  border-radius: 5px;
}

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