
/* scrn rcd */

/* html {
    cursor: none;
} */


/* main */

body {
    font-family: Helvetica, sans-serif;
    animation: loadIn 0.75s;
    padding: 25px;
}


p::selection, h1::selection, em::selection, a::selection, button::selection, #danger-h1::selection, #evil-h1::selection, #blood-h1::selection, #love-h1::selection, #paa-h1::selection {
    color: white;
    background-color: red;
}

em {
    text-transform: uppercase;
    font-style: normal;
    color: red;
}

@keyframes loadIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

/* index */

.index-hover {
    cursor: default;
}

.index-hover p{
    color: white;
    /* opacity: 0; */
    transition: 0.2s linear;
    display: inline;
}

.index-hover p:hover {
    opacity: 1;
}

#index-body {
   background-color: red;
   /* background:#a90329; */
   transition: background-color 0.75s;
}

#index-body.bgChange {
    background-color: rgb(141, 0, 0);
    /* background: radial-gradient(circle,rgb(141, 0, 0) 0%, rgb(92, 0, 0) 100%); */
    transition: 1s;
}

#click.bgChange {
    color: red;
    transition: 1s;
    animation: vibrate-2 0.2s infinite;
}

@keyframes vibrate-2 {
    0% { transform: translate(0);}
    20% {transform: translate(-1px, 1px);}
    40% {transform: translate(-1px, -1px);}
    60% { transform: translate(1px, 1px);}
    80% {transform: translate(1px, -1px); }
    100% { transform: translate(0)}
  }



#index-body.change {
    background-color: white;
}

.index-a {
    color: red;
    font-style: italic;
    text-decoration: none;
    transition: 0.5s;
}

.index-a:hover {
    color: rgb(141, 0, 0);
    transition: 0.5s;
}

button {
    background: none;
    border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}

#click {
    font-family: "Playfair Display SC";
    font-size: 30px;
    transition: 0.75s;
}


#title {
    color: red;
    font-weight: 400;
    text-align: center;
    font-size: 125px;
    padding-top: 15px;
    animation: fadeIn 2s; 
    line-height: 0.95em;
    font-family: "Playfair Display SC";
}


@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

#click {
    position: absolute;
    left: 48%;
    top: 48%;
    
    color: white;
}

#index-nav {
    display: none;
    animation: fadeIn 2s;
}

/* overview */
#overview {
    text-align: center;
    padding-top: 15%;
    transition: 1s;
    font-size: 50px;
    
    
}

#overview.change {
    /* opacity: 0; */
    color:red;
}

#overview-main {
    transition: 0.7s;
}

#overview-main.change {
   background-color: rgb(141, 0, 0);
   transition: 1s;
}



/* btns */

#nav.change {
    opacity: 0;
    transition: 0.3s;
}

#nav {
    transition: 1s;
}

.nav-btn {
    text-decoration: none;
    text-transform: uppercase;
    position: absolute;
    color: red;
    border-style: solid;
    border-width: 1px;
    border-color: black;
    border-radius: 10px;
    padding: 10px;
    transition: background-color 0.2s linear;
    z-index: -1;
}


.nav-btn:hover {
    background-color: red;
    border-color: red;
    color:white;
}

#next-btn {
    right: 100px;
    bottom: 100px;
    transition: 0.5s;
}


#next-btn.change {
    opacity: 0;
    transition: 0.5s;
}

#prev-btn {
    right: 170px;
    bottom: 100px;
}

#special-btn {
    right: 175px;
    bottom: 100px;
}


/* articles */

.article-h1 {
    font-family: "Playfair Display SC";
    text-transform: uppercase;
    font-style: italic;
    color: red;
    font-weight: normal;
    font-size: 90px;
    line-height: 80px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-p {
    font-size: 25px;
    margin-left: 60px;
    margin-right: 60px;
}

#body.change {
    background-color: rgb(141, 0, 0);
    transition: 1s;
 }

/* evil */

.evil {
   display:grid;
   grid-template-columns: 1fr;
   grid-template-rows: 1fr;
   place-items: center;
}

@supports (-webkit-text-stroke: 2.5px black) {
    .evil-h1 {
      -webkit-text-stroke: 3px red;
      -webkit-text-fill-color: none;}}

.evil-h1 {
    /* font-family: "Playfair Display SC"; */
    text-transform: uppercase;
    font-style: italic;
    color: white;
    font-weight: bold;
    font-size: 100px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 95px;
    letter-spacing: 0.01em;
    cursor:default;
    animation: horizontal-shaking 0.3s infinite;
    transition: 1s;
    z-index: 3;
}
/* 
.evil-h1:hover {
    display: none;
} */


.evil-before {
    grid-area: 1 / 1;
}

#evil-appear {
    opacity: 0;
    transition: 1s;
}

.evil-article {
    grid-area: 1 / 1;
    z-index: -1;
}


@keyframes horizontal-shaking {
    0% { transform: translateX(0) }
    25% { transform: translateX(5px) }
    50% { transform: translateX(-5px) }
    75% { transform: translateX(5px) }
    100% { transform: translateX(0) }
}

@keyframes tilt-n-move-shaking {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2px, 2px) rotate(2deg); }
    50% { transform: translate(0, 0) rotate(0eg); }
    75% { transform: translate(-2px, 2px) rotate(-2deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
  }

/* blood */

.blood {
    display:grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    place-items: center;
 }
 
 .blood-before {
    grid-area: 1 / 1;
 }

.blood-article {
    grid-area: 1 / 1;
}

#blood-h1 {
    text-transform: uppercase;
    font-style: italic;
    color: red;
    font-weight: bold;
    font-size: 130px;
    padding-top: 20px;
    padding-left: 40px;
    padding-right: 40px;
    line-height: 130px;
    letter-spacing: 0.01em;
    cursor:default;
    z-index: 3;
    transition: 1s;
    animation: fadeInDown 10s;
}


@keyframes vertical-shaking {
    0% { transform: translateY(10) }
    25% { transform: translateY(20px) }
    50% { transform: translateY(-20px) }
    75% { transform: translateY(20px) }
    100% { transform: translateY(10) }
  }

@keyframes fadeInDown {
    0% {transform: translateY(-420px);}
    100% {transform: translateY(0px);}
}

@keyframes vibrate {
    0% { transform: translate(0);}
    20% {transform: translate(-2px, 2px);}
    40% {transform: translate(-2px, -2px);}
    60% { transform: translate(2px, 2px);}
    80% {transform: translate(2px, -2px); }
    100% { transform: translate(0)}
  }


#blood-appear {
    opacity: 0;
    transition: 1s; 
    z-index: -1;
  }

/* life and death */

.lad {
    display:grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    place-items: center;
 }
 
.lad-before {
    grid-area: 1 / 1;
 }

.lad-article {
    grid-area: 1 / 1;
}

@supports (-webkit-text-stroke: 2.5px black) {
    .lad-em {
      -webkit-text-stroke: 3px red;
      -webkit-text-fill-color: white;}}

#lad-h1 {
    text-transform: uppercase;
    font-style: italic;
    color: red;
    font-weight: bold;
    font-size: 130px;
    padding-top: 60px;
    padding-left: 40px;
    padding-right: 40px;
    line-height: 130px;
    letter-spacing: 0.01em;
    cursor:default;
    z-index: 3;
    transition: 1s;
    animation: slideIn 2s;
}

@keyframes slideIn {
    0% {
      transform: translateY(100px);
    }
    100% {
      transform: translateY(0);
    }
  }
  
#lad-appear {
    opacity: 0;
    transition: 1s; 
    z-index: -1;
  }


/* love */

.love {
    display:grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    place-items: center;
}
 
 .love-before {
    grid-area: 1 / 1;
   padding-top: 180px;
 }

.love-article {
    grid-area: 1 / 1;
}

#love-h1 {
    text-transform: uppercase;
    font-style: italic;
    color: red;
    font-weight: bold;
    font-size: 250px;
    line-height: 130px;
    letter-spacing: 0.01em;
    cursor:default;
    z-index: 3;
    transition: 1s;
    animation: heart 1.3s infinite;
}

#love-appear {
    opacity: 0;
    transition: 1s; 
    z-index: -1;
  }

@keyframes heart {
    0% {transform: scale(0.8)}
    25% {transform: scale(1)}
    75% {transform: scale(0.7)}
    100% {transform: scale(0.8)}
}

/* danger */

.danger {
    display:grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    place-items: center;
}
 
 .danger-before {
    grid-area: 1 / 1;
 }

.danger-article {
    grid-area: 1 / 1;
}


#danger-h1 {
    text-transform: uppercase;
    font-style: italic;
    color: red;
    font-weight: bold;
    font-size: 160px;
    line-height: 140px;
    letter-spacing: 0.01em;
    cursor:default;
    z-index: 3;
    transition: 1s;
    animation: vibrate 0.3s infinite;
}

#danger-appear {
    opacity: 0;
    transition: 1s; 
    z-index: -1;
  }

/* power and authority */

.paa {
    display:grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    place-items: center;
}
 
 .paa-before {
    grid-area: 1 / 1;
 }

.paa-article {
    grid-area: 1 / 1;
}

@supports (-webkit-text-stroke: 2.5px black) {
    #paa-h1 {
      -webkit-text-stroke: 3px red;
      -webkit-text-fill-color: none;}}

#paa-h1 {
    text-transform: uppercase;
    font-style: italic;
    color: white;
    font-weight: bold;
    font-size: 150px;
    line-height: 140px;
    letter-spacing: 0.01em;
    cursor:default;
    z-index: 3;
    transition: 1s;
    padding-top: 100px;
    animation: jump-shaking 0.6s infinite;
}

#paa-appear {
    opacity: 0;
    transition: 1s; 
    z-index: -1;
  }

  @keyframes jump-shaking {
    0% { transform: translateX(0) }
    15% { transform: translateY(-50px) rotate(3deg) }
    25% { transform: translateY(-30px) rotate(-3deg) }
    45% { transform: translateY(-30px) rotate(3deg) }
    55% { transform: translateY(-30px) rotate(-3deg) }
    100% { transform: translateY(0) rotate(0) }
  }


/* about */

.a-about {
    color: red;
    text-decoration: none;
    font-style: italic;
}

/* nav */

nav {
    position: fixed;
    bottom: 0;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
    left: 0;
    right: 0;
    background-color: white;
    z-index:10;
}

hr {
    left: 0;
    right: 0;
    padding-top: 0;
    margin-top: 0;
}

nav a {
    text-decoration: none;
    color: black;
    padding-right: 10px;
    transition: 0.3s;
    text-transform: uppercase;
}

nav a:hover {
    color: red;
}

/* media queries */

@media only screen and (max-width: 600px) {
    #blood-h1, #lad-h1, #love-h1, #danger-h1, #paa-h1 {
        font-size: 60px;
        line-height: 60px;
        padding: 0;
    }

    #evil-h1 {
        font-size: 25px;
        -webkit-text-stroke: 1px red;
        line-height: 28px;
    }

    #lad-h1 {
        -webkit-text-stroke: 1px red;
    }

    .article-h1 {
        display:block;
        font-size: 55px;
        line-height: 50px;
        padding: 0;
        margin-left: 10px;
        margin-right: 10px;
    }

    .article-p {
        font-size: 15px;
        margin-left: 10px;
        margin-right: 10px;
    }

    #next-btn {
        right: 40px;
        bottom: 100px;
        transition: 0.5s;
    }
    
    #prev-btn {
        right: 110px;
        bottom: 100px;
    }

    #special-btn {
        right: 115px;
        bottom: 100px;
    }
    
    #click {
       left: 42%;
       top: 48%;
    }

    #title {
        padding-top: 100px;
        font-size: 40px;
    }

    #title a {
        font-weight: bold;
        text-decoration: underline;
    }

    #overview {
        padding-top: 100px;
        font-size: 40px;
    }

  }