/* Fonts */
@font-face {
  font-family: InterBlack;
  src: url(Inter-Black.ttf);
}

@font-face {
  font-family: Display;
  src: url(DisplayOTF.otf);
}

@font-face {
  font-family: Linebeam;
  src: url(Linebeam.ttf);
}

@font-face {
  font-family: TheLedDisplaySt;
  src: url(TheLedDisplaySt.ttf);
}
/* Fonts */



/* COLORS */
:root {
  --primary-color: #FFFFFF;
  --secondary-color: #000000;
  --bg-color: #000000;
  --shadow-1: rgb(255,255,255, 0.65);
  --shadow-2: rgb(255,255,255, 0.75);
  --color-1: #F60000;
  --color-2: #C1007E;
  --color-3: #FFCA00;
  --color-4: #BEA0C2;
  --color-5: #00E0FF;
  --color-6: #65007E;
  --color-7: #00FF38;
}

html[data-theme="dark"] {
  --primary-color: #000000;
  --secondary-color: #FFFFFF;
  --bg-color: #FFFFFF;
  --shadow-1: rgb(0,0,0, 0.65);
  --shadow-2: rgb(0,0,0, 0.75);
  --color-1: #BA2424;
  --color-2: #a31571;
  --color-3: #DCB211;
  --color-4: #93669A;
  --color-5: #3195A3;
  --color-6: #510D62;
  --color-7: #189E36;
}
/* COLORS */


/*TOGGLE*/
.theme-switch {
  display: inline-block;
  height: 28px;
  position: relative;
  width: 60px;
  position: fixed;
  top: 15px;
  right: 12px;
  z-index: 998;

  &-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

.theme-switch input {
  display: none;
}

.slider {
  background-color: #D6D6D6;
  box-shadow: inset 0px 0px 7px 6px rgb(86, 86, 86, 0.6);
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.4s;
  width: 52px;
  height: 28px;
  border-radius: 50px;
}

.slider:before {
    background-color: #eeeeee;
    bottom: 0px;
    content: "";
    height: 28px;
    left: 0px;
    position: absolute;
    transition: 0.4s;
    width: 28px;
    border-radius: 50px;
}

input:checked {
 + .slider {
    background-color: #2e2e2e;

    &:before {
      transform: translateX(25px);
    }
  }
}
/* TOGGLE*/

/* Body */
body {
  font-family: Helvetica, sans-serif;
  background-color: var(--bg-color);
  color: var(--primary-color);
  background-size: cover;
  background-repeat: no-repeat;
	font-size: 14px;
  line-height: 1.5;
  margin: 0px;
  padding: 0px;
  transition: 0.3s;
  overscroll-behavior-y: none;
}

body a {
  color: var(--primary-color);
  cursor: pointer;
}
/* BODY */

/* FADER */
#fader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  pointer-events: none;
  animation-duration: 1300ms;
  animation-timing-function: ease-in-out;
}

#fader:before {
  content: 'fade'
}

#fader.fade-out {
  opacity: 0;
  animation-name: fade-out;
}

#fader.fade-in {
  opacity: 1;
  animation-name: fade-in;
}
/* FADER */


/* NAVBAR */
.info {
  position: fixed;
  font-family: Arial;
  top: 12px;
  left: 12px;
  font-size: 14px;  
  font-weight: normal;
  padding: 10px 22px 10px 22px;
  border-radius: 23px;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border: inset 2px var(--primary-color);
  border-style: solid;
  transition: 0.2s;
  text-transform: uppercase;
  font-style: italic;
  box-shadow: inset 0px 0px 7px 6px var(--shadow-1);
  cursor: default;
  transition: 0.3s;
  z-index: 999;
  cursor: pointer;
}

.info a {
  text-decoration: none;
}

.info:hover {
  transition: 0.3s;
  box-shadow: inset 0px 0px 9px 8px var(--shadow-2);
}

.info-2 {
  top: 12px;
  left: 170px;
  cursor: s-resize;
}

.info-3 {
  top: 12px;
  left: 280px;
}
/* NAVBAR */

/*ARTICLE NAV*/
.return {
  position: fixed;
  top: 12px;
  left: 10px;
  font-size: 14px;  
  font-weight: normal;
  padding: 10px 22px 10px 22px;
  border-radius: 23px;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border: inset 2px var(--primary-color);
  border-style: solid;
  transition: 0.2s;
  margin-left: 10px;
  text-transform: uppercase;
  font-style: italic;
  box-shadow: inset 0px 0px 7px 6px var(--shadow-1);
  cursor: default;
  transition: 0.3s;
}

.return a {
  text-decoration: none;
}

.return a span:hover {
  color: var(--primary-color);
}

.return:hover {
  transition: 0.3s;
  box-shadow: inset 0px 0px 9px 8px var(--shadow-2);
}

.name {
  position: fixed;
  top: 25px;
  width: auto;
  left: 50%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.name a {
  text-decoration: none;
}

.name a:hover {
  text-decoration: none;
}
/*ARTICLE NAV*/


/*PROGRESS BAR*/
div.progress {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 0px;
  height: 5px;
  background-color: var(--primary-color);
}
/*PROGRESS BAR*/


/*LANDING PAGE LINKS*/
.article-list {
  display: block;
  list-style-type: none;
  text-align: center;
  font-size: 60px;
  line-height: 78px;
  margin-top: 80px;
  margin-bottom: 100px;
  text-transform: uppercase;
  font-family: InterBlack;
  z-index: 500;
  position: relative;
}

.article-list li {
  margin-top: 33px;
  margin-bottom: 33px;
}

.article-list a {
  text-decoration: none;
  }

  .colors span {
    transition: 2s;
  }
  
  .colors span:nth-child(1n):hover {
    color: var(--color-1);
  }
  
  .colors span:nth-child(2n):hover {
    color: var(--color-2);
  }
  
  .colors span:nth-child(3n):hover {
    color: var(--color-3);
  }
  
  .colors span:nth-child(4n):hover {
    color: var(--color-4);
  }
  
  .colors span:nth-child(5n):hover {
    color: var(--color-5);
  }
  
  .colors span:nth-child(6n):hover {
    color: var(--color-6);
  }
  
  .colors span:nth-child(7n):hover {
    color: var(--color-7);
  }
  
  .colors span:hover {
    transition: 0s;
  }

.link-wrapper {
  margin-bottom: 50px;
}

.color-1 {
  color: var(--color-1);
}

.color-2 {
  color: var(--color-2);
}

.color-3 {
  color: var(--color-3);
}

.color-4 {
  color: var(--color-4);
}

.color-5 {
  color: var(--color-5);
}

.color-6 {
  color: var(--color-6);
}

.color-7 {
  color: var(--color-7);
}

.article-list h1{
  font-size: 35px;
  line-height: 40px;
  font-family: Arial;
  font-style: italic;
  font-weight: normal;
  text-transform: lowercase;
  margin-bottom: 10px;
}
/*LANDING PAGE LINKS*/


/*ARTICLE TEXT*/
.article-text {
  margin: 100px 50px 100px 200px;
  width: auto;
}

.article-text p {
font-size: 16px;
text-align: justify;
width: 70%;
font-family: Arial;
}

.article-text h1 {
  font-size: 48px;
  width: 85%;
  font-family: InterBlack;
  text-transform: uppercase;
  margin-bottom: 18px;
  }

.article-text h2 {
  font-size: 20px;
  font-style: italic;
  width: 60%;
  font-family: Arial;
  font-weight: normal;
  margin-bottom: 50px;
  }

.article-text h3 {
  font-size: 14px;
  font-family: Arial;
  font-weight: normal;
  margin-bottom: -25px;
  }

  .cursive {
    font-style: italic;
  }
/*ARTICLE TEXT*/


/* All writing columns */ 
.articles {
  width: 100vw;
  height: auto;
  font-size: 15px;
  overflow: hidden;
  margin-top: 90px;
  margin-bottom: 60px;
}

.article-link {
    width: 100vw;
    margin-left: 30px;
    margin-bottom: 25px;
    z-index: 10;
    position: relative;
    font-family: Arial;
}

  .article-link:after {
    content: "";
    display: table;
    clear: both;
  }

.article-column-1 {
    float: left;
    width: 20%;
    font-style: italic;
    text-transform: uppercase;
  }

  .article-column-2 {
    float: left;
    width: 60%;
  }

  .article-column-3 {
    float: left; 
    width: 10%;
  }
/* All writing columns */ 

/*ARTICLE FOOTER*/
.article-footer {
  width: 100%;
  height: 200px;
}

.previous-article {
  font-size: 14px;  
  font-weight: normal;
  padding: 10px 22px 10px 22px;
  border-radius: 23px;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border: inset 2px var(--primary-color);
  border-style: solid;
  transition: 0.2s;
  text-transform: uppercase;
  font-style: italic;
  box-shadow: inset 0px 0px 7px 6px var(--shadow-1);
  cursor: default;
  width: 90px;
  text-align: center;
  transition: 0.3s;
}

.next-article {
  float: right;
  font-size: 14px;  
  font-weight: normal;
  padding: 10px 22px 10px 22px;
  border-radius: 23px;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border: inset 2px var(--primary-color);
  border-style: solid;
  transition: 0.2s;
  text-transform: uppercase;
  font-style: italic;
  box-shadow: inset 0px 0px 7px 6px var(--shadow-1);
  cursor: default;
  width: 60px;
  text-align: center;
  transition: 0.3s;
}

.previous-article:hover {
  box-shadow: inset 0px 0px 9px 8px var(--shadow-2);
}

.next-article:hover {
  box-shadow: inset 0px 0px 9px 8px var(--shadow-2);
}

.column-footer {
  float: left;
  width: 50%;
  height: 100px; 
}

.row-footer {
  width: 97%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}

.row-footer:after {
  content: "";
  display: table;
  clear: both;
}
/*ARTICLE FOOTER*/

/* MODAL */
/* Sliding down animation */
@keyframes slide-down-in {
  from {
    top: -100%;
  }
  to {
    top: 75px;
  }
}

@keyframes slide-down-out {
  from {
    top: 75px;
  }
  to {
    top: -100%;
  }
}

/* Modal (background) */
.modal {
  display: none; 
  position: fixed;
  z-index: 900;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.modal-content {
  position: relative;
  background-color: var(--primary-color);
  font-family: Arial;
  font-size: 14px;
  color: var(--secondary-color);
  z-index: 999;
  position: fixed;
  transition: 0.2s;
  box-shadow: 0px 0px 6px 6px var(--primary-color);
  border-radius: 16px;
  line-height: 31px;
  text-align: justify;
  top: 75px;
  left: 18px;
  width: 350px;
  transform: none;
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
  padding: 20px 33px 40px 33px;
}

.email-link {
color: var(--secondary-color);
}

.heading {
  font-style: italic;
}

.contact-link {
  color: var(--primary-color);
  font-size: 13px;  
  font-family: Arial;
  font-weight: normal;
  padding: 1px 7px 1px 7px;
  width: 50px;
  border-radius: 23px;
  background-color: var(--secondary-color);
  transition: 0.2s;
  box-shadow: 0px 0px 6px 6px var(--secondary-color);
  cursor: pointer;
  text-align: center;
}

.contact-link a {
  text-decoration: none!important;
}

/* The Close Button */
.close {
  float: right;
  font-weight: bold;
  width: 10px;
  height: 10px;
  margin-top: 0px;
  margin-right: 0px;
}

.close:hover,
.close:focus {
  color:#343434;
  cursor: pointer;
  width: 10px;
  height: 10px;
  margin-top: 0px;
  margin-right: 0px;
}
/* MODAL */

/* SPOTLIGHT CURSOR */
div.cursor {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s;
  box-shadow: 0px 0px 20px 30px var(--primary-color);
  opacity: 20%;
  z-index: 0;
  pointer-events: none;
}

div.cursor.is-down {
  width: 80px;
  height: 80px;
  pointer-events: none;
  z-index: 0;
}
/* SPOTLIGHT CURSOR */


/* ANIMATIONS */
/*Fader*/
@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/*Fader*/

/* Slide down Modal */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}
/* Slide down Modal */

 /* Scrolling text animation */
 @-moz-keyframes example1 {
  0%   { -moz-transform: translateX(100%); }
  100% { -moz-transform: translateX(-100%); }
 }
 @-webkit-keyframes example1 {
  0%   { -webkit-transform: translateX(100%); }
  100% { -webkit-transform: translateX(-100%); }
 }
 @keyframes example1 {
  0%   { 
  -moz-transform: translateX(100%); /* Firefox bug fix */
  -webkit-transform: translateX(100%); /* Firefox bug fix */
  transform: translateX(100%); 		
  }
  100% { 
  -moz-transform: translateX(-100%); /* Firefox bug fix */
  -webkit-transform: translateX(-100%); /* Firefox bug fix */
  transform: translateX(-100%); 
  }
 }
  /* Scrolling text animation */

  /*Fader*/
  @keyframes fade-in {
    from { opacity: 0 }
    to { opacity: 1 }
  }
  
  /* Firefox < 16 */
  @-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  
  /* Safari, Chrome and Opera > 12.1 */
  @-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  
  /* Internet Explorer */
  @-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  
  /* Opera < 12.1 */
  @-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  
  @keyframes fade-out {
    from { opacity: 1 }
    to { opacity: 0 }
  }
  /*Fader*/


  @media only screen and (max-width: 479px) {
/* NAVBAR */
.info {
  left: 10px;
  padding: 10px 15px 10px 15px;
  font-size: 12px; 
}

.info-2 {
  left: 142px;
}

.info-3 {
  left: 228px;
}
/* NAVBAR */

  
/* MODAL */
.modal-content {
  top: 125px;
  width: 78%;
  padding: 10px 20px 30px 20px;
  transform: translateX(-50%);
  left: 50%;
}
/* MODAL */


    /*Landing page links*/
    .article-list {
      font-size: 30px;
      line-height: 40px;
      margin-top: 80px;
      margin-bottom: 70px;
      width: 97%;
      margin-left: auto;
      margin-right: auto;
    }

    .article-list li {
      margin-top: 15px;
      margin-bottom: 15px;
    }
  
    .link-wrapper {
      margin-bottom: 30px;
    }
    /*Landing page links*/
    

    /*Toggle*/
  .theme-switch {
    top: 70px;
    left: 16px;
  }
  /*Toggle*/
  

  /* Spotlight cursor*/
  div.cursor {
    display: none;
  }
  /* Spotlight cursor*/
  

  /*Article text*/
  .article-text {
    margin: 80px 5px 10px 20px;
    width: auto;
  }
  
  .article-text p {
  font-size: 16px;
  text-align: justify;
  width: 95%;
  font-family: Arial;
  }
  
  .article-text h3 {
    font-size: 13px;
    font-family: Arial;
    font-weight: normal;
    margin-bottom: -20px;
    }
  
  .article-text h1 {
    font-size: 28px;
    width: 95%;
    font-family: InterBlack;
    text-transform: uppercase;
    margin-bottom: 13px;
    }
  
  .article-text h2 {
    font-size: 16px;
    font-style: italic;
    width: 95%;
    font-family: Arial;
    font-weight: normal;
    margin-bottom: 30px;
    }
  /*Article text*/


  /*All writing*/
  .article-column-1 {
    float: left;
    width: 85%;
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .article-column-2 {
    float: left;
    width: 85%;
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .article-column-3 {
    float: left;
    width: 85%;
    margin-top: 4px;
    margin-bottom: 4px;
  }
  /*All writing*/
  

  /* Other nav */
  .return {
    top: 12px;
    left: 5px;
    font-size: 12px;  
    padding: 10px 22px 10px 22px;
    background-color: var(--secondary-color);
  }
  /* Other nav */
  

  /*Footer*/
  .previous-article {
    font-size: 12px;  
    padding: 10px 22px 10px 22px;
    width: 78px;
    background-color: var(--secondary-color);
  }
  
  .next-article {
    font-size: 12px;  
    padding: 10px 22px 10px 22px;
    width: 48px;
    background-color: var(--secondary-color);
  }
  
  .row-footer {
    width: 94%;
    margin-top: 40px;
  }
  /*Footer*/
  }
  


  @media only screen and (min-width: 481px) {
   /* NAVBAR */
.info {
  left: 12px;
  padding: 10px 22px 10px 22px;
}

.info-2 {
  top: 12px;
  left: 170px;
}

.info-3 {
  top: 12px;
  left: 280px;
}
/* NAVBAR */
  
  
/* MODAL */
.modal-content {
  top: 100px;
  left: 50%;
  width: 350px;
  transform: translateX(-50%);
  padding: 20px 30px 40px 30px;
}
/* MODAL */


    /*Landing page links*/
    .article-list {
      font-size: 33px;
      line-height: 47px;
      margin-top: 80px;
      margin-bottom: 70px;
      width: 90%;
      margin-left: auto;
      margin-right: auto;
    }

    .article-list li {
margin-top: 20px;
margin-bottom: 20px;
    }

  
    .link-wrapper {
      margin-bottom: 30px;
    }
    /*Landing page links*/
    

    /*Toggle*/
  .theme-switch {
    top: 16px;
    right: 12px;
  }
  /*Toggle*/
  

  /* Spotlight cursor*/
  div.cursor {
    display: none;
  }
  /* Spotlight cursor*/
  

  /*Article text*/
  .article-text {
    margin: 80px 5px 10px 20px;
    width: auto;
  }
  
  .article-text p {
  font-size: 16px;
  text-align: justify;
  width: 95%;
  font-family: Arial;
  }
  
  .article-text h3 {
    font-size: 13px;
    font-family: Arial;
    font-weight: normal;
    margin-bottom: -20px;
    }
  
  .article-text h1 {
    font-size: 28px;
    width: 95%;
    font-family: InterBlack;
    text-transform: uppercase;
    margin-bottom: 13px;
    }
  
  .article-text h2 {
    font-size: 16px;
    font-style: italic;
    width: 95%;
    font-family: Arial;
    font-weight: normal;
    margin-bottom: 30px;
    }
  /*Article text*/


  /*All writing*/
  .article-column-1 {
    float: left;
    width: 85%;
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .article-column-2 {
    float: left;
    width: 85%;
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .article-column-3 {
    float: left;
    width: 85%;
    margin-top: 4px;
    margin-bottom: 4px;
  }
  /*All writing*/
  

  /* Other nav */
  .return {
    top: 12px;
    left: 5px;
    font-size: 12px;  
    background-color: var(--secondary-color);
    padding: 10px 22px 10px 22px;
  }
  /* Other nav */
  
  
  /*Footer*/
  .previous-article {
    font-size: 12px;  
    padding: 10px 22px 10px 22px;
    width: 78px;
  }
  
  .next-article {
    font-size: 12px;  
    padding: 10px 22px 10px 22px;
    width: 48px;
  }
  
  .row-footer {
    width: 94%;
    margin-top: 40px;
  }
  /*Footer*/
  }
  
  
  @media only screen and (min-width: 900px) {
       /* NAVBAR */
.info {
  left: 12px;
  padding: 10px 22px 10px 22px;
}

.info-2 {
  top: 12px;
  left: 170px;
}

.info-3 {
  top: 12px;
  left: 280px;
}
/* NAVBAR */
  
  
/* MODAL */
.modal-content {
  top: 100px;
  left: 50%;
  width: 350px;
  transform: translateX(-50%);
  padding: 20px 30px 40px 30px;
}
/* MODAL */


    /*Landing page links*/
    .article-list {
      font-size: 45px;
      line-height: 75px;
      margin-top: 80px;
      margin-bottom: 70px;
      width: 90%;
      margin-left: auto;
      margin-right: auto;
    }
  
    .link-wrapper {
      margin-bottom: 30px;
    }
    /*Landing page links*/
    

    /*Toggle*/
  .theme-switch {
    top: 16px;
    right: 12px;
  }
  /*Toggle*/
  

  /* Spotlight cursor*/
  div.cursor {
    display: block;
  }
  /* Spotlight cursor*/
  

/*ARTICLE TEXT*/
.article-text {
  margin: 100px 50px 100px 150px;
  width: auto;
}

.article-text p {
font-size: 16px;
text-align: justify;
width: 85%;
font-family: Arial;
}

.article-text h1 {
  font-size: 48px;
  width: 90%;
  font-family: InterBlack;
  text-transform: uppercase;
  margin-bottom: 18px;
  }

.article-text h2 {
  font-size: 20px;
  font-style: italic;
  width: 70%;
  font-family: Arial;
  font-weight: normal;
  margin-bottom: 50px;
  }

.article-text h3 {
  font-size: 14px;
  font-family: Arial;
  font-weight: normal;
  margin-bottom: -25px;
  }

  .cursive {
    font-style: italic;
  }
  /*ARTICLE TEXT*/


  /* All writing columns */ 
.article-column-1 {
    float: left;
    width: 20%;
    font-style: italic;
    text-transform: uppercase;
  }

  .article-column-2 {
    float: left;
    width: 60%;
  }

  .article-column-3 {
    float: left; 
    width: 10%;
  }
/* All writing columns */ 

  /* Other nav */
  .return {
    top: 12px;
    left: 5px;
    font-size: 14px;  
    background-color: var(--secondary-color);
    padding: 10px 22px 10px 22px;
  }
  /* Other nav */
  
  
  /*Footer*/
  .previous-article {
    font-size: 14px; 
    padding: 10px 22px 10px 22px;
    width: 78px;
  }
  
  .next-article {
    font-size: 14px;   
    padding: 10px 22px 10px 22px;
    width: 48px;
  }
  
  .row-footer {
    width: 94%;
    margin-top: 40px;
  }
  /*Footer*/
  }
  


  @media only screen and (min-width: 1150px) {
 /*TOGGLE*/
.theme-switch {
  display: inline-block;
  height: 28px;
  position: relative;
  width: 60px;
  position: fixed;
  top: 15px;
  right: 12px;
  z-index: 998;

  &-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

.theme-switch input {
  display: none;
}

.slider {
  background-color: #D6D6D6;
  box-shadow: inset 0px 0px 7px 6px rgb(86, 86, 86, 0.6);
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.4s;
  width: 52px;
  height: 28px;
  border-radius: 50px;
}

.slider:before {
    background-color: #eeeeee;
    bottom: 0px;
    content: "";
    height: 28px;
    left: 0px;
    position: absolute;
    transition: 0.4s;
    width: 28px;
    border-radius: 50px;
}

input:checked {
 + .slider {
    background-color: #2e2e2e;

    &:before {
      transform: translateX(25px);
    }
  }
}
/* TOGGLE*/

/* Body */
body {
  font-family: Helvetica, sans-serif;
  background-color: var(--bg-color);
  color: var(--primary-color);
  background-size: cover;
  background-repeat: no-repeat;
	font-size: 14px;
  line-height: 1.5;
  margin: 0px;
  padding: 0px;
  transition: 0.3s;
  overscroll-behavior-y: none;
}

body a {
  color: var(--primary-color);
  cursor: pointer;
}
/* BODY */



/* NAVBAR */
.info {
  position: fixed;
  font-family: Arial;
  top: 12px;
  left: 12px;
  font-size: 14px;  
  font-weight: normal;
  padding: 10px 22px 10px 22px;
  border-radius: 23px;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border: inset 2px var(--primary-color);
  border-style: solid;
  transition: 0.2s;
  text-transform: uppercase;
  font-style: italic;
  box-shadow: inset 0px 0px 7px 6px var(--shadow-1);
  cursor: default;
  transition: 0.3s;
  z-index: 999;
  cursor: pointer;
}

.info a {
  text-decoration: none;
}

.info:hover {
  transition: 0.3s;
  box-shadow: inset 0px 0px 9px 8px var(--shadow-2);
}

.info-2 {
  top: 12px;
  left: 170px;
  cursor: s-resize;
}

.info-3 {
  top: 12px;
  left: 280px;
}
/* NAVBAR */

/*ARTICLE NAV*/
.return {
  position: fixed;
  top: 12px;
  left: 10px;
  font-size: 14px;  
  font-weight: normal;
  padding: 10px 22px 10px 22px;
  border-radius: 23px;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border: inset 2px var(--primary-color);
  border-style: solid;
  transition: 0.2s;
  margin-left: 10px;
  text-transform: uppercase;
  font-style: italic;
  box-shadow: inset 0px 0px 7px 6px var(--shadow-1);
  cursor: default;
  transition: 0.3s;
}

.return a {
  text-decoration: none;
}

.return a span:hover {
  color: var(--primary-color);
}

.return:hover {
  transition: 0.3s;
  box-shadow: inset 0px 0px 9px 8px var(--shadow-2);
}

.name {
  position: fixed;
  top: 25px;
  width: auto;
  left: 50%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.name a {
  text-decoration: none;
}

.name a:hover {
  text-decoration: none;
}
/*ARTICLE NAV*/


/*PROGRESS BAR*/
div.progress {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 0px;
  height: 5px;
  background-color: var(--primary-color);
}
/*PROGRESS BAR*/


/*LANDING PAGE LINKS*/
.article-list {
  display: block;
  list-style-type: none;
  text-align: center;
  font-size: 60px;
  line-height: 78px;
  margin-top: 80px;
  margin-bottom: 100px;
  text-transform: uppercase;
  font-family: InterBlack;
  z-index: 500;
  position: relative;
}

.article-list li {
  margin-top: 33px;
  margin-bottom: 33px;
}

.article-list a {
  text-decoration: none;
  }

  .colors span {
    transition: 2s;
  }
  
  .colors span:nth-child(1n):hover {
    color: var(--color-1);
  }
  
  .colors span:nth-child(2n):hover {
    color: var(--color-2);
  }
  
  .colors span:nth-child(3n):hover {
    color: var(--color-3);
  }
  
  .colors span:nth-child(4n):hover {
    color: var(--color-4);
  }
  
  .colors span:nth-child(5n):hover {
    color: var(--color-5);
  }
  
  .colors span:nth-child(6n):hover {
    color: var(--color-6);
  }
  
  .colors span:nth-child(7n):hover {
    color: var(--color-7);
  }
  
  .colors span:hover {
    transition: 0s;
  }

.link-wrapper {
  margin-bottom: 70px;
}

.color-1 {
  color: var(--color-1);
}

.color-2 {
  color: var(--color-2);
}

.color-3 {
  color: var(--color-3);
}

.color-4 {
  color: var(--color-4);
}

.color-5 {
  color: var(--color-5);
}

.color-6 {
  color: var(--color-6);
}

.color-7 {
  color: var(--color-7);
}

.article-list h1{
  font-size: 35px;
  line-height: 40px;
  font-family: Arial;
  font-style: italic;
  font-weight: normal;
  text-transform: lowercase;
  margin-bottom: 10px;
}
/*LANDING PAGE LINKS*/


/*ARTICLE TEXT*/
.article-text {
  margin: 100px 50px 100px 200px;
  width: auto;
}

.article-text p {
font-size: 16px;
text-align: justify;
width: 70%;
font-family: Arial;
}

.article-text h1 {
  font-size: 48px;
  width: 85%;
  font-family: InterBlack;
  text-transform: uppercase;
  margin-bottom: 18px;
  }

.article-text h2 {
  font-size: 20px;
  font-style: italic;
  width: 60%;
  font-family: Arial;
  font-weight: normal;
  margin-bottom: 50px;
  }

.article-text h3 {
  font-size: 14px;
  font-family: Arial;
  font-weight: normal;
  margin-bottom: -25px;
  }

  .cursive {
    font-style: italic;
  }
/*ARTICLE TEXT*/


/* All writing columns */ 
.articles {
  width: 100vw;
  height: auto;
  font-size: 15px;
  overflow: hidden;
  margin-top: 90px;
  margin-bottom: 60px;
}

.article-link {
    width: 100vw;
    margin-left: 30px;
    margin-bottom: 25px;
    z-index: 10;
    position: relative;
    font-family: Arial;
}

  .article-link:after {
    content: "";
    display: table;
    clear: both;
  }

.article-column-1 {
    float: left;
    width: 20%;
    font-style: italic;
    text-transform: uppercase;
  }

  .article-column-2 {
    float: left;
    width: 60%;
  }

  .article-column-3 {
    float: left; 
    width: 10%;
  }
/* All writing columns */ 

/*ARTICLE FOOTER*/
.article-footer {
  width: 100%;
  height: 200px;
}

.previous-article {
  font-size: 14px;  
  font-weight: normal;
  padding: 10px 22px 10px 22px;
  border-radius: 23px;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border: inset 2px var(--primary-color);
  border-style: solid;
  transition: 0.2s;
  text-transform: uppercase;
  font-style: italic;
  box-shadow: inset 0px 0px 7px 6px var(--shadow-1);
  cursor: default;
  width: 90px;
  text-align: center;
  transition: 0.3s;
}

.next-article {
  float: right;
  font-size: 14px;  
  font-weight: normal;
  padding: 10px 22px 10px 22px;
  border-radius: 23px;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border: inset 2px var(--primary-color);
  border-style: solid;
  transition: 0.2s;
  text-transform: uppercase;
  font-style: italic;
  box-shadow: inset 0px 0px 7px 6px var(--shadow-1);
  cursor: default;
  width: 60px;
  text-align: center;
  transition: 0.3s;
}

.previous-article:hover {
  box-shadow: inset 0px 0px 9px 8px var(--shadow-2);
}

.next-article:hover {
  box-shadow: inset 0px 0px 9px 8px var(--shadow-2);
}

.column-footer {
  float: left;
  width: 50%;
  height: 100px; 
}

.row-footer {
  width: 97%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}

.row-footer:after {
  content: "";
  display: table;
  clear: both;
}
/*ARTICLE FOOTER*/




/* MODAL */
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 900; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: var(--primary-color);
  font-family: Arial;
  font-size: 14px;
  color: var(--secondary-color);
  z-index: 999;
  position: fixed;
  transition: 0.2s;
  box-shadow: 0px 0px 6px 6px var(--primary-color);
  border-radius: 16px;
  line-height: 31px;
  text-align: justify;
  top: 75px;
  left: 18px;
  width: 350px;
  transform: none;
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
  padding: 20px 33px 40px 33px;
}

.heading {
  font-style: italic;
}

.contact-link {
  color: var(--primary-color);
  font-size: 13px;  
  font-family: Arial;
  font-weight: normal;
  padding: 1px 7px 1px 7px;
  width: 50px;
  border-radius: 23px;
  background-color: var(--secondary-color);
  transition: 0.2s;
  box-shadow: 0px 0px 6px 6px var(--secondary-color);
  cursor: pointer;
  text-align: center;
}

.contact-link a {
  text-decoration: none!important;
}

/* The Close Button */
.close {
  float: right;
  font-weight: bold;
  width: 10px;
  height: 10px;
  margin-top: 0px;
  margin-right: 0px;
}

.close:hover,
.close:focus {
  color:#343434;
  cursor: pointer;
  width: 10px;
  height: 10px;
  margin-top: 0px;
  margin-right: 0px;
}
/* MODAL */

/* SPOTLIGHT CURSOR */
div.cursor {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s;
  box-shadow: 0px 0px 20px 30px var(--primary-color);
  opacity: 20%;
  z-index: 0;
  pointer-events: none;
}

div.cursor.is-down {
  width: 80px;
  height: 80px;
  pointer-events: none;
  z-index: 0;
}
/* SPOTLIGHT CURSOR */
}
  
  
