:root{
    --black: #202022;
    --white: #CACACA;
    --blue: #00BBC9;
    --dblue: #00747C;
    --drblue: #004E52;
    --red: #e73131;
    --lred: #ff4d4d;
    --dred: #b30000;
    --lblue: #00d5e7;
    --grey: #878787;
    --difblack: #333336;
    --font-size: 16px;
    --mono: 'Space Mono', monospace;
    --sans: 'Orbitron', sans-serif;
    --duration: 2s;
}
.gradient{
    background: linear-gradient(90deg, rgba(42,119,124,1) 0%, rgba(0,237,255,1) 29%, rgba(19,210,224,1) 50%, rgba(0,236,255,1) 71%, rgba(42,119,124,1) 100%);
    height: 2px;
}
.full-gradient{
    width: 100vw;
    position: absolute;
    left: 0;
}
html {
    position: relative;
    box-sizing: border-box;
    background-color: var(--difblack);
    font-size: var(--font-size);
    scroll-behavior: smooth;
    overflow: visible;
}
html, body {
    max-width: 100%;
}
body{
    font-family: var(--sans);
    font-size: 100%;
}
p{
    font-size: 1.6rem;
}
.textual-margin{
    display: inline-block;
    margin-top: 2rem;
}
main{
    min-height: 100vh;
    height: fit-content;
}
body {
    padding: 0;
    margin: 0;
    background-color: var(--difblack);
    color: var(--white);
    font-family: var(--sans);
}
img{
    width: 100%;
}
h1, h2, h3{
    margin: 0;
}
h2:first-of-type{
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-family: var(--sans);
    color: var(--blue);
}
a {
    color: var(--blue);
}
a:hover{
    color: var(--lblue);
    text-decoration: none;
}
*,
*::before,
*::after{
    box-sizing: inherit;
}
a.no-decor{
    text-decoration: none;
    color: inherit;
}
section{
    padding: 4rem 0;
}

.navbar{
    background-color: var(--black);
    height: 8rem;
}


.nav-link{
  text-decoration: none;
  color: var(--white);
}

.main-title{
  font-family: var(--sans);
}



@keyframes fader {
  from { opacity: 1.0; }
  to   { opacity: 0.0; }
}



.fading-slideshow {
  position: relative;
  margin: 1em auto;
  padding: 0;
  list-style-type: none;
}
.fading-slideshow > li {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0);
  display: flex;
  justify-content: center;
  align-items: center;  
  /* start image at the left edge of the screen */
    transform: translate(-17%, 0);
}

/* current slide */

.fading-slideshow > li:first-of-type {
  animation-name: fader;
  animation-delay: 2s;
  animation-duration: 1s;
  z-index: 20;
}

/* next slide to display */

.fading-slideshow > li:nth-of-type(2) {
  z-index: 10;
}

/* all other slides */

.fading-slideshow > li:nth-of-type(n+3) {
  display: none;
}

.descr{
    font-family: var(--mono);
    font-size: 1.5em;
    
}


.description{
    margin-top: 2rem;
}
.signup{
    font-family: var(--sans);
}
.signup-form{
    width: 50%;
    margin: 0 auto;
    background-color: var(--black);
    border-style: none;
}
.field{
    background-color: var(--white);
    border-radius: 0;
}
#apply-button{
    border-radius: 0;
    background-color: var(--dblue);
    color: var(--grey);
    border-color: var(--black);
    transition: 0.3s;
}
#apply-button:hover{
    background-color: var(--blue);
    color: var(--black);
}
.nav-link{
    font-family: var(--sans);
    font-size: 20px;
    text-decoration: none;
    color: var(--white); !important;
}
.nav-link:hover{
    color: var(--lblue);
}
.nav-item{
    margin-right: 1rem;
}
.navbar-brand{
    width: 6rem;
    height: 6rem;
    display: inline-block;
    overflow: hidden;
}
/*on mobile devices, make the navbar brand smaller*/
@media (max-width: 768px) {
    .navbar-brand{
        margin: 0 auto;
        position:relative;
        left:2rem;
    }
    .nav-link{
        text-align: center;
    }
}
#navbutton{
    border-color: var(--lblue);
    color: var(--white);
}
.nav-link a i{
    font-size: 2rem;
    color: var(--white); !important;
}
#insta{
    color: var(--white);
}
#insta:hover{
    color: var(--blue);
}
#tele{
    color: var(--white);
}
#tele:hover{
    color: var(--blue);
}
footer {
    background-color: var(--difblack);
    padding-bottom: 0.8rem;
    text-align: center;
    height: 5rem;
}
footer h3 {
    font-family: var(--sans);
    margin-bottom: 0.5rem;
}
footer img {
    width: 5rem;
    height: 5rem;
}
#shortID{
    margin: 0;
    padding: 0.5rem 5rem 0.5rem 5rem;
    display: flex;
    justify-content: space-between;
}
@media(max-width: 768px) {
    #shortID{
        padding: 0.5rem 1rem 0.5rem 1rem;
    }
}
#shortID form{
    display: inline;
}
.red-looking-button{
    display: inline-block;
    background-color: var(--red);
    color: var(--black);
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1.3rem;
    border-radius: 0;
    text-decoration: none;
}
.red-looking-button:hover{
    background-color: var(--lred);
    color: var(--black);
    text-decoration: none;
}
.red-looking-button:focus{
    background-color: var(--dred);
    color: var(--white);
    text-decoration: none;
}

.invisible-button{
    display: inline;
    color: inherit;
    background-color: transparent;
    border: none;
    text-decoration: none;
}
.invisible-button i{
    display: block;
    transition: transform 0.3s;
}

.highlighted{
    background-color: var(--white);
    display: inline-block;
    color: var(--black);
    border-radius: 0;
    border: none;
    padding: 0.5rem 1rem;
}
.special-highlighted{
    background-color: var(--blue);
    display: inline;
    color: var(--black);
    border-radius: 0;
    border: none;
    padding: 0 1rem;
}
.typing-container {
    display: flex;
    justify-content: center;
    align-items: center;}
.input-cursor {
    width: 2px;
    background-color: var(--white);
    display: inline;
    animation: blink .6s linear infinite alternate;
    /* put to bottom of div */
}
@keyframes blink {
    0% {opacity: 1;}
    40% {opacity: 1;}
    60% {opacity: 0;}
    100% {opacity: 0;}
}

.errorPage{
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 80vh;
}
.errorPage h1{
    font-family: var(--sans);
    font-weight: 800;
    color: var(--red);
    font-size: 5rem;
    margin-bottom: 0;
    text-align: left;
}
.errorPage h2{
    color: var(--blue);
    font-weight: 700;
    font-family: var(--mono);
    text-align: left;
}
.errorPage flexy{
    display: flex;
    flex-direction: row;
    align-self: flex-end;
    justify-content: flex-start;
    width:100%;
}
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: orange; }
}




#postBody {
    padding: 1rem;
}
#postBody .big-news-image{
    text-align: center;
}
.big-news-image img{
    width: 50%;
    height: auto;
    border-color: var(--blue);
    border-style: dashed;
    border-width: 3px; 
}
#postBody .post-title{
    margin-bottom: 1rem;
    color: var(--lblue);
    text-align:center;
    font-size: 48px;
}
#postBody .post-body{
    font-size: 18px;
    word-wrap: break-word;
    width: 100%;
    
}
#postBody .post-date{
    margin-top: 3rem;
    font-size: 12px;
    margin-bottom: 0;
    text-align:center;
}

#adminButtons{
    display: flex;
    flex-flow: row wrap;
    justify-content: right;
}
#adminButtons a{
    margin-right: 1rem;
}
#adminButtons form{
    display: inline-block;
}
#adminButtons p{
    margin-right: 1rem;
}
.section-blu{
    background-color: var(--drblue);
}
.section-blu h2{
    color: var(--white);
}
.mail{
    @media (max-width: 768px) {
        font-size: 5vw;
    }
}
.navbar{
    z-index: 1;
    background-color: transparent;
}
.nav-link{
    font-weight: 700;
}