@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Boldonse&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

@keyframes indicator-animation {
    0% {
        color: var(--black);
    }
    50% {
        color: var(--alabaster-white);
    }
    100% {
        color: var(--black);
    }
}

:root {
    --black: #000000;
    --off-white: #F2F0EF;
    --alabaster-white: #FAFAFA;
    --strowberry: #FA5053;
    --royal-blue: #305CDE;
}

* {
    margin: 0;
    border: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--alabaster-white);
}

.temporaryframe {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.temporaryframe img {
    width: 250px;
}

.temporaryframe span {
    animation: indicator-animation 0.7s infinite;
    font-size: 30px;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Boldonse", system-ui;
    font-weight: 400;
    font-style: normal;
}

header nav {
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

header nav .brandmark a {
    text-decoration: none;
}

header nav .brandmark a img {
    width: 180px;
}

header nav .brandmark a span {
    animation: indicator-animation 1s infinite;
}

header nav .crossing a {
    text-decoration: none;
    border: 1px solid var(--black);
    padding: 6px 10px;
    color: var(--black);
    transition: 0.5s;
}

main {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Share Tech Mono", monospace;
    font-weight: 400;
    font-style: normal;
}

main article {
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

main article .wright-titles {
    width: fit-content;
    margin: 0 0 20px 0;
    border-top: 1px solid var(--black);
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 100;
    transition: 0.5s;
}

main article .introduction {
    width: 100%;
    padding: 20px;
}

main article .introduction .introduction-description h1 {
    font-size: 22px;
}

main article .introduction .introduction-description h3{
    font-size: 16px;
}

main article .how-to-use {
    width: 100%;
    padding: 20px;
}

main article .how-to-use .how-to-use-description h3 {
    padding: 10px 0 0 0;
}

main article .how-to-use .how-to-use-description pre {
    white-space: pre-wrap;
    word-break: break-all;
    margin: 10px 0;
    border-radius: 7px;
    padding: 10px 11px;
    background-color: var(--off-white);
    color: var(--black);
}

main article .how-to-use .how-to-use-description p:last-child {
    color: var(--strowberry);
}

main article .documention {
    width: 100%;
    padding: 20px;
}

main article .wright-structure {
  background-color: var(--off-white);
  margin: 15px 0;
  border-radius: 10px;
  padding: 20px 15px;
  font-family: "Share Tech Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

main article .wright-structure ul {
  width: fit-content;
  list-style-type: none;
  padding: 10px;
}

main article .wright-structure ul li {
  list-style-type: none;
  margin: 0 0 7px auto;
  border-left: 2px solid var(--alabaster-white);
  padding: 0 0 0 15px;
}


main article .wright-structure .wright-structure-main-directory {
  border: none;
  font-weight: 900;
}

main article .wright-structure .wright-structure-lable {
  padding: 0 20px;
  color: var(--strowberry) !important;
  font-family: "Share Tech Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

main article .documention .documention-description p:last-child {
    color: var(--royal-blue);
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: "Boldonse", system-ui;
    font-weight: 400;
    font-style: normal;
}

footer .rights {
    width: 75%;
    border-top: 1px solid var(--black);
    padding: 100px 0 10px 0;
    font-size: 10px;
}

@media (pointer: fine) {

    header nav .crossing a:hover {
        background-color: var(--black);
        color: #f8f9fa;
    }

    main article .wright-titles:hover {
        background-color: var(--black);
        color: #f8f9fa;
        cursor: pointer;
    }

}
@media (pointer: coarse) {}
@media only screen and (max-width: 575.9px) {

    header nav {
        width: 100%;
    }

    main article {
        width: 100%;
    }

    footer .rights {
        width: 100%;
    }

}
@media only screen and (min-width: 576px) {}
@media only screen and (min-width: 768px) {}
@media only screen and (min-width: 992px) {}
@media only screen and (min-width: 1200px) {}