@import url("https://fonts.googleapis.com/css?family=Varela+Round");
@import url('https://fonts.googleapis.com/css?family=Roboto:700');
@import url('https://fonts.googleapis.com/css2?family=Aref+Ruqaa+Ink&family=Cairo+Play:wght@200&family=Mada:wght@200&family=Reem+Kufi+Fun&family=Reem+Kufi+Ink&family=Rubik:wght@300&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&display=swap');

*
{
    margin: 0px;
}
:root
{
    --main-color: #fff;
    --background-gradient: linear-gradient(to right, #d3cae2, #e6c17a);
        --color-dark-gray-1: #072930;
    --color-off-white: #ab5b02;
    --re : #FFF;
    --navbar-height: 70px;
}
body
{
    background-color: var(--main-color);
}
.main
{
    background-color: var(--color-dark-gray-1);
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}
.main .navbar
{
    width: 100%;
    height: var(--navbar-height);
    background-color: var(--color-dark-gray-1);
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-family: "Varela Round", sans-serif;
}
.main .copyright h1::selection
{
    background: var(--color-dark-gray-1);
    color: #1e8feb;
}
.main .copyright
{
    width: 100%;
    height: 25px;
    background-color: var(--color-off-white);
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    background: var(--background-gradient);
}
.main .copyright h1
{
    font-size: 1em;
    font-weight: 600;
    font-family: "Dosis", sans-serif;
}
.main .home
{
    display: flex;
    width: 80%;
    height: 80%;
}

.main .home .logo
{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.main .home .logo img
{
    cursor: pointer;
}

.logo {
    animation: moveUpDown 6s ease-in-out infinite;
    -webkit-animation: moveUpDown 6s ease-in-out infinite;
}
  @keyframes moveUpDown {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(30px);
      -webkit-transform: translateY(30px);
      -moz-transform: translateY(30px);
      -ms-transform: translateY(30px);
      -o-transform: translateY(30px);
}
  }
.main .navbar .menuNav {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 720px;
    margin: 0 auto;
    height: 100%;
    list-style: none;
  }
  
.main .navbar .menuNav li {
    width: 125px;
    height: 50px;
    transition: background-position-x 0.9s linear;
    text-align: center;
}
.main .navbar .menuNav li a {
    font-size: 22px;
    color: var(--color-off-white);
    text-decoration: none;
    transition: all 0.45s;
}
.main .navbar .menuNav li:hover {
    background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPHN2ZyB2ZXJzaW9uPSIxLjEi%0D%0AIGlkPSJMYXllcl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhs%0D%0AaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB3aWR0%0D%0AaD0iMzkwcHgiIGhlaWdodD0iNTBweCIgdmlld0JveD0iMCAwIDM5MCA1MCIgZW5hYmxlLWJhY2tn%0D%0Acm91bmQ9Im5ldyAwIDAgMzkwIDUwIiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHBhdGggZmlsbD0i%0D%0Abm9uZSIgc3Ryb2tlPSIjZDk0ZjVjIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLW1pdGVybGlt%0D%0AaXQ9IjEwIiBkPSJNMCw0Ny41ODVjMCwwLDk3LjUsMCwxMzAsMAoJYzEzLjc1LDAsMjguNzQtMzgu%0D%0ANzc4LDQ2LjE2OC0xOS40MTZDMTkyLjY2OSw0Ni41LDI0My42MDMsNDcuNTg1LDI2MCw0Ny41ODVj%0D%0AMzEuODIxLDAsMTMwLDAsMTMwLDAiLz4KPC9zdmc+Cg==");
    -webkit-animation: line 1s;
    animation: line 1s;
}
.main .navbar .menuNav li:hover a {
    color: #d94f5c;
}
.main .navbar .menuNav li:not(:last-child) {
    margin-right: 30px;
}

@-webkit-keyframes line {
    0% {
        background-position-x: 390px;
    }
}

@keyframes line {
    0% {
        background-position-x: 390px;
    }
}


.main .docs .intro p
{
    color: var(--re);
    font-size: 1em;
    margin-right: 10px;
    margin-left: 0px;
    font-family: cursive;
}
.main .docs .intro h1
{
    color: var(--re);
    margin-top: 10px;
    margin-left: 7px;
    margin-bottom: 10px;
}
.main .docs .refrens h3
{
    color: var(--re);
    margin-top: 12px;
    margin-left: 7px;
    margin-bottom: 10px;
}

.main .docs .refrens a
{
    color: #1e8feb;
    text-decoration: none;
    text-shadow: none;
}
.main .docs .refrens p
{
    color: var(--re);
    font-size: 0.9em;
    margin-right: 10px;
    margin-left: 0px;
    font-family: cursive;
}

.main .docs .refrens .urlGeoup
{
    margin-top: 10px;
}
.main .docs .docsSection .docsDiv .headerRequest span
{
    font-family: "Source Code Pro", monospace;
    font-optical-sizing: auto;
    background-color: #76777c;
    padding: 2px;
    padding-left: 5px;
    padding-right: 5px;
    /* border: solid 1px #007f16; */
    border-radius: 3px;
    color: #e6fdf2;
}
.main .docs .docsSection .docsDiv .headerRequest code
{
    font-family: "Source Code Pro", monospace;
    font-optical-sizing: auto;
    font-weight: normal;
    color:#007f16;
    background-color: var(--re);
    padding: 3px;
    margin-right: 5px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}
.main .docs .docsSection .docsDiv .headerRequest
{
    text-shadow: none;
    color:blue;
}
.main .docs .docsSection .docsDiv .paragraphAction
{
    color: var(--re);
    font-size: 1em;
    /* margin-right: 10px; */
    margin-left: 3px;
    font-family: cursive;
    margin-top: 10px;
    margin-bottom: 10px;
}
.main .docs .docsSection .docsDiv .titleAction
{
    color: var(--re);
    margin-left: 20px;
}
.main .docs .docsSection .docsDiv
{
    width: 90%;
    min-height: 104px;
    background-color: var(--main);
    display: flex;
    flex-direction: column;
    /* align-content: center;
    align-items: center; */
}
.main .docs .docsSection
{
    width: 100%;
    min-height: 150px;
    background-color: var(--main);
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    margin-top: 40px;
}
.main .docs .refrens .drop
{
    color:aquamarine;
    cursor: pointer;
    margin-left: 20px;
}
.main .docs .refrens
{
    width: 90%;
    min-height: 30px;
    margin-top: 50px;
}
.main .docs .intro
{
    width: 90%;
    min-height: 30px;
    /* background-color: #e5e5e5; */
}
.main .docs
{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.containert th h1 {
    font-weight: bold;
    font-size: 1em;
text-align: left;
color: #185875;
}

.containert td {
    font-weight: normal;
    font-size: 1em;
-webkit-box-shadow: 0 2px 2px -2px #0E1119;
     -moz-box-shadow: 0 2px 2px -2px #0E1119;
          box-shadow: 0 2px 2px -2px #0E1119;
}

.containert {
    margin: 10 px;
    text-align: left;
    overflow: hidden;
    width: 80%;
    margin: 12px;
    margin-top: 20px;
    display: table;
    padding: 0px 0 0 0;
}

.containert td, .containert th {
    padding-bottom: 2%;
    padding-top: 2%;
padding-left:2%;  
}

/* Background-color of the odd rows */
.containert tr:nth-child(odd) {
    background-color: #323C50;
}

/* Background-color of the even rows */
.containert tr:nth-child(even) {
    background-color: #2C3446;
}

.containert th {
    background-color: #1F2739;
}

.containert td:first-child { color: #ffffff; }

.containert tr:hover {
 background-color: #464A52;
-webkit-box-shadow: 0 6px 6px -6px #0E1119;
     -moz-box-shadow: 0 6px 6px -6px #0E1119;
          box-shadow: 0 6px 6px -6px #0E1119;
}

.containert td:hover {
background-color: #ffffff;
color: #000000;
font-weight: bold;

box-shadow: #757457 -1px 1px, #caea5f -2px 2px, #f0ec74 -3px 3px, #7F7C21 -4px 4px, #7F7C21 -5px 5px, #7F7C21 -6px 6px;
transform: translate3d(6px, -6px, 0);

transition-delay: 0s;
    transition-duration: 0.4s;
    transition-property: all;
transition-timing-function: line;
}

@media (max-width: 800px) {
.containert td:nth-child(4),
.containert th:nth-child(4) { display: none; }
}
.glow-on-hover {
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #000000;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000000
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ffffff;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

p {
    text-shadow: 0 0 7px rgba(255,255,255,.3), 0 0 3px rgba(255,255,255,.3);
  }
  .container {
    color: #e5e5e5;
    font-size: 2.26rem;
    text-transform: uppercase;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .animation {
    height:50px;
    overflow:hidden;
    margin-left: 1rem;
  }
  
  .animation > div > div {
    padding: 0.25rem 0.75rem;
    height:2.81rem;
    margin-bottom: 2.81rem;
    display:inline-block;
  }
  
  .animation div:first-child {
    animation: text-animation 8s infinite;
  }
  
  .first div {
    background-color:#20a7d8;
  }
  .second div {
    background-color:#CD921E;
  }
  .third div {
    background-color:#c10528;
  }
  
  @keyframes text-animation {
    0% {margin-top: 0;}
    10% {margin-top: 0;}
    20% {margin-top: -5.62rem;}
    30% {margin-top: -5.62rem;}
    40% {margin-top: -11.24rem;}
    60% {margin-top: -11.24rem;}
    70% {margin-top: -5.62rem;}
    80% {margin-top: -5.62rem;}
    90% {margin-top: 0;}
    100% {margin-top: 0;}
  }


