@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arvo:ital@1&family=The+Nautigal:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');



@import url('https://fonts.googleapis.com/css?family=Roboto');
.wrongcred {
    position: fixed;
    text-align: center;
    background: linear-gradient(90deg, transparent, #f40317);
    border-radius: 10px;
    width: 400px;
    padding: 20px;
    left: 50%;
    top: 75%;
    transform: translate(-50%, -50%);
    color: #03e9f4;
    font-size: 20px;
    font-weight: 900;

  }

.loginpage a{
    text-decoration: none;
    color: rgb(94, 255, 0);
}
.loginpage
{
    margin:0;
    padding:0;    
    width: 100%;
    min-height: 100vh;
    background: url(../images/zebra.png)no-repeat center center fixed;
    background-size: cover;    
}

.login-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    padding: 40px;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,.5);
    box-sizing: border-box;
    box-shadow: 0 15px 25px rgba(0,0,0,.6);
    border-radius: 10px;
  }
  
  .login-box h2 {
    margin: 0 0 30px;
    padding: 0;
    color: #fff;
    text-align: center;
  }
  
  .login-box .user-box {
    position: relative;
  }
  
  .login-box .user-box input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
  }
  .login-box .user-box label {
    position: absolute;
    top:0;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    pointer-events: none;
    transition: .5s;
  }
  
  .login-box .user-box input:focus ~ label,
  .login-box .user-box input:valid ~ label {
    top: -30px;
    left: 0;
    color: #03e9f4;
    font-size: 15px;
  }
  
  .login-box form button {
    position: relative;
    display: inline-block;
    color: #03e9f4;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: .5s;
    
  }
  
  .login-box button:hover {
    background: #03e9f4;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px #03e9f4,
                0 0 25px #03e9f4,
                0 0 50px #03e9f4,
                0 0 100px #03e9f4;
  }
  
  .login-box button span {
    position: absolute;
    display: block;
  }
  
  .login-box button span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #03e9f4);
    animation: btn-anim1 1s linear infinite;
  }
  
  @keyframes btn-anim1 {
    0% {
      left: -100%;
    }
    50%,100% {
      left: 100%;
    }
  }
  
  .login-box button span:nth-child(2) {
    top: -100%;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, transparent, #03e9f4);
    animation: btn-anim2 1s linear infinite;
    animation-delay: .25s
  }
  
  @keyframes btn-anim2 {
    0% {
      top: -100%;
    }
    50%,100% {
      top: 100%;
    }
  }
  
  .login-box button span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #03e9f4);
    animation: btn-anim3 1s linear infinite;
    animation-delay: .5s
  }
  
  @keyframes btn-anim3 {
    0% {
      right: -100%;
    }
    50%,100% {
      right: 100%;
    }
  }
  button {
    all: unset;
    cursor: pointer;
  }
  .login-box button span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #03e9f4);
    animation: btn-anim4 1s linear infinite;
    animation-delay: .75s
  }
  
  @keyframes btn-anim4 {
    0% {
      bottom: -100%;
    }
    50%,100% {
      bottom: 100%;
    }
  }
/* *********************** */


.current a{
    
    background-size: 100% 100%;
    color: #27262c;
    animation: spring 300ms ease-out;
    text-shadow: 0 -1px 0 #353535;
      font-weight: bold;
}

.nav {
    height: 50px;
    width: 100%;
    background-color: #1177ca;
    position: relative;
  }

  .nav > .nav-header {
    display: inline;
  }
  
  .nav > .nav-header > .nav-title {
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
    padding: 10px 10px 10px 10px;
    font-size: 22px;
    color: #fff;
    font-weight: 550;
  }

  .nav > .nav-links {
    font-size: 18px;
    display: inline;
    float: right;

  }
  .nav > .nav-links > ul li a{
    color: #fff;
    line-height: 40px;
    font-size: 18px;
    display: block;
    padding: 0 8px;
    text-decoration: none;

  }
  .nav > .nav-links > ul{
    list-style: none;
    position: relative;
    padding: 0;
    margin-top: 5px;
    
  }
  .nav > .nav-links > ul li{
    display: inline-block;
    background-color: #1177ca;
    
    
  }
  .nav > .nav-links > ul li:hover{
    background-color:orangered;
    background-size: 100% 100%;
    color: #27262c;
    animation: spring 300ms ease-out;
    text-shadow: 0 -1px 0 #272727;
      font-weight: bold;
  }

  .login a{
      background-color: #15cc1f;
      margin: 0 30px 0 30px;
      
  }
  .nav > .nav-links > ul .login:hover{
    background-color: #15cc1f;
    
}

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
header 
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    padding: 40px 100px;
    z-index: 1000;
    transition: 0.6s;
}
.logo
{
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    color: #0ecfff;
    text-shadow: 0px 0px 3px #000000;
    text-decoration: none;
    font-size: 3em;
    letter-spacing: 2px;
    transition: 0.6s;
    display: block;
    
    
}
.catchphrase{
    font-weight: 800;
    color: #0ecfff;
    text-shadow: 2px 2px 4px #000000;
    font-size: 3em;
    letter-spacing: 2px;
    transition: 0.6s;
    display: block;
    margin: auto;
    font-family: 'Arvo', serif;
}
header #toggle
{
   position: relative;
   width: 30px;
   height: 30px;
   cursor: pointer; 
}
#toggle:before
{
    content: '';
    position: absolute;
    top: 7px;
    width: 100%;
    height: 2px;
    background: #fff;
}
#toggle:after
{
    content: '';
    position: absolute;
    bottom: 7px;
    width: 100%;
    height: 2px;
    background: #fff;
}
.banner.active #toggle:before
{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.banner.active #toggle:after
{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}


.banner
{
    position: relative;
    width: 100%;
    min-height: 94.8vh;
    padding: 100px;
    background: url(../images/zebra.png)no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    transition: 0.5s;
    z-index: 2;
}
.banner .profileImg
{
    display: flex;
    justify-content: center;
    
}
.profileImg img 
{
    max-width: 250px;
}
.banner.active
{
    transform: translateX(-400px);
}

/******************* Side Menuu********* *******/
#navigation
{
    position: fixed;
    top: 0;
    right: -200px;
    width: 400px;
    height: 100vh;
    background: #40c3ff;
    z-index: 1;
    display: grid;
    place-items: center;
    transition: 0.5s;
}
#navigation.active
{
    right: 0;
}
#navigation ul
{
    position: relative;
    display: flex;
    flex-direction: column;
}
#navigation ul li 
{
    list-style: none;
}
#navigation ul li a{
    color: #fff;
    text-decoration: none;
    display: inline-block;
    font-size: 2em;
    font-weight: 600;
    text-transform: uppercase;
}

/***** Content Body *****/
.content
{  
    display: block;
    background: rgba(0,0,0,0.7);
    margin: auto;
    padding: 10px;
    margin-top: 3%;
    margin-bottom: 3%;
}

.content ul
{
    margin-left: 55px;
    color: rgb(226, 221, 221);
    letter-spacing: 2px;
}
.content ul li 
{
    margin: 5px;
}
.content h2
{
    color: rgb(226, 221, 221);
    font-size: 2em;
}
.content h3
{
    color: rgb(226, 221, 221);
    margin: 10px;    
}
.content h2 span
{
    color: #40c3ff;
    font-size: 1em;
}
.content p {
    margin: 10px;
    font-size: 1.2em;
    color: rgb(226, 221, 221);
    font-weight: 300;
    line-height: 1.6;
}
.content p span 
{
    font-family: 'Arvo', serif;
    font-family: 'The Nautigal', cursive;
    font-size: 2em;
}
.content a
{
    position: relative;
    display: inline-block;
    color: rgb(226, 221, 221);
    text-decoration: none;
   
}

.sci 
{
    bottom: 1%;
    position: absolute;
    display: inline-block;
    background: rgba(0,0,0,0.7);
    text-align: center;
    color: #ccc;
    width: 89.8%;
}
.sci img {
    margin: 15px;
    max-width: 50px;
    max-height: 50px;
}

.sci img:hover
{
    background: rgb(252, 0, 0) 50px;
    
}
.sci a img
{
    filter: invert(1);
    max-width: 50px;
    max-height: 50px;
    padding: 5px;
    
}
/******************** Menu ********************/
section{
    display: flex;
    flex-direction: row;
    gap: 100px;
    margin-top: auto;
  }
.toc h1{    
    border: 5px solid #fff;
    text-align: center;
    margin-bottom: 10px;
    background: #2196f3;
    color: #fff;
  }
.toc ul 
  {
      position: relative;
      display: flex;
      flex-direction: column;
  }
.toc ul li {
      list-style: none;
  }
.toc ul li:before{
      content: attr(data-text);
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
      color: #fff;
      font-size: 6em;
      font-weight: 700;
      pointer-events: none;
      opacity: 0;
      letter-spacing: 20px;
      transition: 0.5s;
      white-space: nowrap;
  }
.toc ul li:hover:before{
      opacity: 0.5;
      letter-spacing: 0px;
  }
.toc ul li a {
      position: relative;
      display: inline-block;
      padding: 6px 15px;
      text-decoration: none;
      background: #2196f3;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 2px;
      overflow: hidden;
      transition: 0.5s;
      z-index: 1;
  }
.toc ul:hover li a{
      opacity: 0;
  }
.toc ul li a:hover{
      transform: scale(1.4);
      z-index: 1000;
      background: #ff3f81;
      opacity: 1;
  }
.toc ul li a:before{
      content: '';
      position: absolute;
      top: 0;
      left:-100px;
      width: 80px;
      height: 100%;
      background: linear-gradient(90deg,transparent, rgb(255,255,255,0.8),
       transparent);
      transform: skewX(35deg);
      transition: 0s;
  }
.toc ul li a:hover:before{
      left: calc(100% + 100px);
      transition: 0.5s;
      transition-delay: 0.2s;
  }
.clockMenu
  {
      display: flex;
      align-items: center;
      margin: auto;
  }
  /* Clock */
.clock {
    width: 350px;
    height: 350px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: url(../images/clock.png);
    background-size: cover;
    border: 4px solid #091921;
    border-radius: 50%;
    box-shadow: 0 -15px 15px rgba(255, 255, 255, 0.05),
            inset 0 -15px 15px rgba(255, 255, 255, 0.05),
                0 15px 15px rgba(0, 0, 0, 0.3),
            inset 0 15px 15px rgba(0, 0, 0, 0.3);
}
.clock:before
{
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
    z-index: 10000;
}
.clock .hour,
.clock .min,
.clock .sec{
    position: absolute;
}
.clock .hour, .hr{
    width: 160px;
    height: 160px;
}
.clock .min, .mn{
    width: 190px;
    height: 190px;
}
.clock .sec, .SC{
    width: 230px;
    height: 230px;
}

.hr, .mn, .SC {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    position: absolute;
    border-radius: 50%;
}
.hr:before{
    content: '';
    position: absolute;
    width: 8px;
    height: 80px;
    background: #f504f5;
    z-index: 10;
    border-radius: 6px 6px 0 0;
}
.mn:before{
    content: '';
    position: absolute;
    width: 4px;
    height: 90px;
    background: rgb(18, 69, 238);
    z-index: 11;
    border-radius: 6px 6px 0 0;
}
.SC:before{
    content: '';
    position: absolute;
    width: 2px;
    height: 150px;
    background: #ff105e;
    z-index: 12;
    border-radius: 6px 6px 0 0;
}
/******************* Brand Board style ***********************/
.colorPalette
{   
    flex-direction: column;
    row-gap: 2px;
}
.colorPalette ul
{
    list-style: none;
    display: inline-flex;   
}
.colorPalette li
{
    border: 5px solid rgb(190, 238, 15);
    width: 150px;
    color: #15cc1f;
    font-weight: 900;
}
#bColor1
{
    padding: 30px;
    background-color: #323435;
}
#bColor2
{
    padding: 30px;
    background-color: #eaa088; 
}
#bColor3
{
    padding: 30px;
    background-color: #ececee;
}
#bColor4
{
    padding: 30px;
    background-color: #505050;
}
#fColor1
{
    padding: 30px;
    background-color: #0ecfff;
}
#fColor2
{
    padding: 30px;
    background-color: #e2dddd;
}

/******************* Form page ****************/
#form {
    /* Center the form on the page */
    margin: auto;
    width: 800px;
    /* Form outline */
    padding: 1em;
    border: 1px solid #CCC;
    border-radius: 1em;
    color: #ccc;
  }
  
  #form ul {
    list-style: none;
   
  }
  
  #form li + li {
    margin-top: 1em;
  }
  
  #form label {
    /* Uniform size & alignment */
    display: inline-flex;
    width: 210px;
    margin-right: 10px;
    
  }
  
  input,
  textarea {
    /* To make sure that all text fields have the same font settings
       By default, textareas have a monospace font */
    font: 1em sans-serif;
    /* Uniform text field size */
    width: 200px;
    height: 40px;
    box-sizing: border-box;
  
    /* Match form field borders */
    border: 1px solid #999;
  }
  
  input:focus,
  textarea:focus {
    /* Additional highlight for focused elements */
    border-color: #000;
  }
  
  textarea {
    /* Align multiline text fields with their labels */
    vertical-align: top;
  
    /* Provide space to type some text */
    height: 5em;
    padding: 5px;
  }
  
  #button {
    width: 20%;
    text-align: center;
    margin: auto;
    display: flex;
    padding: 2%;
    
    font-size: 20px;

  }
  #button:hover{
      background-color: #40c3ff;
      transition: 0.5s;
  }

  /**************** Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other *********************/
  @media screen and (max-width: 600px) {
    .column, input[type=submit] {
      width: 100%;
      margin-top: 0;
    }
  }

/* .short-text { display: none; } */
@media (max-width: 950px)
{   
    /* .short-text { display: inline-block; }
    .full-text { display: none; } */
    .logo img {
        max-width: 40%;
    }
    header
    {
        padding: 20px 50px;
    }
    .banner
    {
        padding: 100px 50px 150px;
    }
    .banner .profileImg img
    {
       display: none;
    }
    .banner h2 
    {
        font-size: 1.8em;
    }
    .banner p, .banner a
    {
        font-size: 1em;
    }
    .banner.banner.active
    {
        transform: translateX(-250px);
    }
    #navigation
    {
        width: 250px;
    }
    #navigation ul li a 
    {
        font-size: 1.5em;
        margin: 5px 0;
        transition: 0.3s;
    }
    .sci 
    {
        position: absolute;
        bottom: 0;   
    }
    
    
}
