
/* Whole page attributes */
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
  }
  
  /* Makes things ~Disappear~ */
  .invisible {
    position: absolute;
    top: -1000%;
    opacity: -1;
  }
  
  /* Makes links ~Pretty~ */
  .link {
    color: #7f22f8;
    text-decoration: none;
    font-weight: 900;
  }
  .link:hover {
    text-decoration: underline;
    font-weight: 500;
  }
  
  /* Button styling */
  .green-button{
    display: flex;
    justify-content: center;
    white-space: nowrap;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background-image: linear-gradient(to top left, #100669 -20%, #6f00ff 100%);
    color: #ffffff;
  }
  .green-button:hover{
    transition: all 0.3s ease;
    background-image: linear-gradient(to top left, #5600c7 -20%, #100669 100%);
    font-weight: bold;
    color: #00fd2a;
  }
  
  /* Page body */
  .main-body {
    background-image: url("../img/backgroundTexture.webp");
    background-repeat: repeat;
    background-attachment: fixed;
    background-size: 256px;
    background-position: center;
    color: #4100b9;
  }
  
  /* Page header */
  .main-header {
    display: flex;
    position: sticky;
    justify-content: center;
    align-items: center;
    z-index: 999;
    top: 0;
    height: 80px;
    font-size: 1.2rem;
    background: #131313;
    outline: 3px solid #00b92e;
  }
  
  /* Container for header items */
  .main-header__container{
    display: flex;
    justify-content: space-between;
    z-index: 1;
    height: 80px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;  
  }
  
  /* Logo "WELCOMEo/" */
  #main-header__logo{
    background-color: blue;
    background-image: linear-gradient(to top, #0b046d 0%, #7f22f8 100%);
    background-clip: text;
    white-space: nowrap;
    font-weight: bold;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 3rem;
  }
  
  /* Container for header links */
  .main-header__menu{
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
  }
  
  /* Container for basic header links */
  .main-header__item{
    height: 80px;
  }
  
  /* Style for header links*/
  .main-header__links{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    white-space: nowrap;
    padding: 0 1rem;
    height: 100%;
    color: #ffffff;
  }
  .main-header__links:hover{
    transition: all 0.3s ease;
    font-weight: bold;
    color: #fd0000;
  }
  
  /* Container for header button */
  .main-header__button{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
  }
  
  /* Page article */
  .main-article {
    display: flex;
    flex-flow: row;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #ffffff;
  }
  .main-article__container {
    text-decoration: none;
    color: #ffffff;
    width: 100%;
    display: flex;
    flex-flow: column;
    padding: 1rem;
    border-radius: 24px;
    background-color: #131313;
    background-color: rgba(19, 19, 19, 0.4);
    outline: 3px rgba(0, 185, 46, 0.5) solid;
  }
  .main-article__container:hover {
    transition: all 0.3S ease-in-out;
    outline: 3px #00b92e solid;
    background-color: rgba(19, 19, 19, 0.6);
  }
  .main-article__side-by-side {
    display: flex;
    justify-content: space-between;
    flex-flow: row;
    width: 100%;
    gap: 1.2rem;
  }
  .main-article__title {
    white-space: nowrap;
    color: #00fd2a;
    padding-bottom: 0.6rem;
  }
  .main-article__body {
    text-indent: 0.4rem each-line;
  }
  
  /* Article Images */
  .main-article__image {
    max-width: 12rem;
    object-fit: contain;
    height: 100%;
    border-radius: 32px;
    outline: 2px #004d13 solid;
    padding: 0.4rem;
  }
  
  /* Article Special Text (invisible on mobile) */
  .main-article__special-text {
    font-style: italic;
    font-weight: 600;
    color: #4c00ff;
    font-size: 0.8rem;
    z-index: 1;
  }
  
  /* Page footer */
  .main-footer {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0px;
    text-align: center;
    white-space: nowrap;
    font-weight: 100;
    color: #ffffff;
    font-size: 0.6rem;
    z-index: 0;
    opacity: 0.7;
  }
  .main-footer:hover {
    transition: all 0.5s ease-in-out;
    opacity: 0.7;
    background-color: #000000;
  }
  
  
  /* Activated when screen is smaller than max-width */
  @media screen and (max-width: 960px){
    .main-body {
      background-attachment: scroll;
    }
    .main-header__container {
      display: flex;
      justify-content: space-between;
      height: 80px;
      z-index: 1;
      width: 100%;
      max-width: 1300px;
      padding: 0;
    }
    .main-header__menu {
      display: grid;
      grid-template-columns: auto;
      background: #131313;
      margin: 1.6rem auto;
      width: 100%;
      position: absolute;
      top: -1000%;
      opacity: -1; 
      transition: all 0.5s ease;
      height: 50vh;
      min-height: 400px;
      z-index: -1;
      padding: 1rem;
    }
    .main-header__menu.active {
      background: #131313;
      outline: 3px solid rgb(0, 185, 46);
      top: 70%;
      opacity: 1;
      transition: all 0.5s ease;
      z-index: 99;
      height: 50vh;
      font-size: 1.6rem;
    }
    #main-header__logo{
      padding-left: 25px;
    }
    .main-header__toggle .bar {
      width: 25px;
      height: 4px;
      margin: 5px auto;
      transition: all 0.3s ease-in-out;
      background: #4100b9;
    }
    .main-header__item {
      width: 100%;
    }
    .main-header__links {
      text-align: center;
      padding: 0.8rem;
      width: 100%;
      display: table;
    }
    #mobile-menu {
      position: absolute;
      top: 24px;
      right: 32px;
    }
    .main-header__btn {
      padding-bottom: 1rem;
    }
    .button {
      display: flex;
      justify-content: center;
      align-items: center;
      width: auto;
      height: 48px;
      margin: 0;
    }
    .main-header__toggle .bar {
      display: block;
      cursor: pointer;
    }
    #mobile-menu.is-active .bar:nth-child(2) {
      opacity: 0;
    }
    #mobile-menu.is-active .bar:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }
    #mobile-menu.is-active .bar:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
    .main-article {
      padding-left: 2vw;
      padding-right: 2vw;
    }
    .main-article__title {
      font-size: 5vw;
    }
    .main-article__body {
      font-size: 3.3vw;
    }
    .main-article__side-by-side {
      flex-flow: column;
      align-items: center;
    }
    .main-article__image {
      display: flex;
      justify-content: center;
      align-items: center;
      max-width: 10rem;
    }
    .main-article__special-text {
      opacity: 0%;
    }
    .main-footer {
      opacity: 0;
    }
  }