@charset "utf-8";
/* index.html (coolgamer9's awesome webpage) */
.spaceOut {
line-height: 2;
word-spacing: 10px;
letter-spacing: 30px;
font-size: 40px;
}
.timesChange {
    font-family: "Times New Roman", Times, serif;
    font-size: +70px;
    font-weight: 900;
}
.arialChange {
    font-family: "Arial", sans-serif;
    font-size: +20px;
    font-weight: 900;
}

/* frogs.html (FROG informative document) */

.image1, .image2, .image3, .image4, .image5, .image6, .image7
{
    background-image: url(Images/static.gif);
    background-repeat: no-repeat;
    background-position: center;
    transition: background-image 1s ease;
}

.image1
{
    background-size: 750px 604px;
    padding-top: 604px;
    width: 750px;
}

.image2
{
    background-size: 1200px 675.2px;
    padding-top: 675.2px;
    width: 1200px;
}

.image3
{
    background-size: 612px 600px;
    padding-top: 600px;
    width: 612px;
}

.image4
{
    background-size: 800px 766px;
    padding-top: 766px;
    width: 800px;
}

.image5
{
    background-size: 646.5px 643.5px;
    padding-top: 643.5px;
    width: 646.5px;
}

.image6
{
    background-size: 649px 518px;
    padding-top: 518px;
    width: 649px;
}

.image7
{
    background-size: 726px 518px;
    padding-top: 518px;
    width: 726px;
}

.image8
{
    background-size: 1023px 1024px;
    padding-top: 1024px;
    width: 1023px;
    background-image: url("Images/faceRedacted.jpg");
    transition: all 1s ease;
}

.image8:hover
{
    background-image: url("Images/hallwayFace.jpg")
}

.image1:hover 
{
    background-image: url('Images/FROG.png');
}

.image2:hover
{
    background-image: url('Images/frogmodel.jpg');
}

.image3:hover
{
    background-image: url('Images/forg.jpeg');
}

.image4:hover
{
    background-image: url('Images/zuck.png')
}

.image5:hover
{
    background-image: url('Images/evilFrog.png')
}

.image6:hover
{
    background-image: url('Images/smileFrog.png')
}

.image7:hover
{
    background-image: url('Images/evilBird.png')
}

/* notuhReelCompany (Notuh Reel Company Websites) */

.container
{
    width: 90%;
    margin: 0 auto;
}

header
{
    background: rgb(255, 255, 255);
}

header::after
{
    content: '';
    display: table;
    clear: both;
}

.logo
{
    float: left;
    padding: auto;
    margin: auto;
}

nav
{
    float: right;
}

nav ul
{
    margin: 0;
    padding: 0;
    list-style: none;
}

nav li
{
    display: inline-block;
    margin-left: 120px;
    padding-top: 18px;

    position: relative;
}

nav a
{
    text-decoration: none;
    color: black;
    transition: color 750ms;
    text-transform: uppercase;
    font-size: 20px;
}

nav a:hover
{
    color: rgb(153, 0, 0);
    transition: color 750ms;
}

nav a::after
{
    content: '';
    display: block;
    height: 4px;
    width: 100%;
    background-color: rgb(153, 0, 0);

    position: absolute;
    width: 0%;

    transition: all ease-in-out 250ms;
}

nav a:hover::after
{
    width: 100%
}

.fadeIn
{
    animation: fade 2s 1;
}
.fadeSlow
{
    animation: fade 3s 1;
}
@keyframes fade
{
    from { opacity: 0%; }
    50% { opacity: 0%; transform: translateX(-50%); }
    to { opacity: 100%; transform: translateX(0%); }
}
.fadeFromBottom
{
    animation: fromBottom 4s 1;
}
@keyframes fromBottom
{
    from { opacity: 0%; margin-top: 100%; }
    to { opacity: 100%; margin-top: 0%; }
}

.container {
    position: relative;
    width: 90%;
  }
  
  .image {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
    border-radius: 25px;
  }
  
  .middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  
  .container:hover .image {
    opacity: 0.3;
  }
  
  .container:hover .middle {
    opacity: 1;
  }
  .text:hover{
    animation: hoverChange 1s ease-in-out infinite;
  }
  @keyframes hoverChange
  {
    0% {
        color: white;
    }
    50%{
        color: gray;
    }
    100%{
        color: white;
    }
  }
  .text {
    background-color: #000000;
    color: white;
    border-radius: 25px;
    font-size: 40px;
    padding: 16px 32px;
  }

  /* HACKER TERMINAL */
  .hackerBgImage
  {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100vh;
    width: 100vw;
    box-shadow: 0 0 400px rgba(0,0,0,0.9) inset;
    z-index: 10;
    background: repeating-linear-gradient(transparent, transparent 3px, black 4px, black 4px), url();
  }
  .hackerText
  {
    margin-left: 60px;
    margin-top: 60px;
    font-size: 50px;
    letter-spacing: 5px;
  }

  .openEffect1::before, .openEffect1::after
  {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .openEffect1::before
  {
    background: black;
    animation: open1 2s steps(15) forwards;
    z-index: 500;
  }

  .openEffect2::before, .openEffect2::after
  {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .openEffect2::before
  {
    background: black;
    animation: open2 2s steps(15) forwards;
    z-index: 500;
  }

    @keyframes open1
    {
        99%{
            z-index: 500;
            bottom: 100%;
        }
        100%{
            bottom: 100%;
            z-index: -100;
        }
    }
    @keyframes open2
    {
      99%{
          z-index: 500;
          top: 100%;
      }
      100%{
          top: 100%;
          z-index: -100;
    }
  }
  .buttonStyle
  {
    position: absolute;
    z-index: 100;
    color: white;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: "VT323", monospace;
    width: 70vw;
    font-weight: 400;
    font-size: 100px;
    font-style: normal;
    background: black;
  }