/*colors*/
:root {
  --black: #0A0A0F;
  --cyan: #00B4D8;
  --white: #F8F9FA;
  --void: #1A1A2E;
  --space: #16213E;
  --royal: #0F3460;
  --aqua: #00F5D4;
  --coral: #FF6B6B;
  --yellow: #FFD93D;
  --Teal: #95E1D3;
  --gray: #ADB5BD;
  --purple: #6C63FF;
  --green: #2EC4B6;
  --orange: #FF9F1C;
  --crimson: #E71D36;
}
/*colors end*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.fa-code {
    color: #00F0FF; /* Your signature cyan */
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5); /* Glow effect */
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
  text-align: left;
  min-height: 100vh;
}

/*navigation*/
nav {
  position: sticky;
  padding: 5px;
  background: rgba(10,10,15,0.8);
  backdrop-filter: blur(10px);
  z-index: 100;
  display: flex;
  justify-content: space-between;
  font-weight: bolder;
}

nav ul{
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
nav li{
    height: 50px;
}
nav a{
    height: 100%;
    padding: 0 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: var(--cyan);
    cursor: pointer;
}

nav li:first-child{
    margin-right: auto;
}
ul > .navhover:after{
    content: '';
    width: 0;
    height: 1.5px;
    background: var(--cyan);
   display: block; 
   margin-left: 7px;
     transition: 0.5s;
}
ul > .navhover:hover:after{
    width: 30px;
    display: block;
      transition: 0.5px;
}
ul > .hidesidebar:after{
    content: '';
    width: 0;
    height: 1.5px;
    background: var(--cyan);
   display: block; 
   margin: auto;
   transition: 0.5s;
}
ul > .hidesidebar:hover:after{
    width: 30px;
    display: block;
    transition: 0.5px;
}
.hidesidebar{
    text-align: left;
}
.works{
    color: #F8F9FA;
}
.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: auto;
    width: 200px;
    z-index: 999;
    background: rgba(10,10,15,0.8);
  backdrop-filter: blur(10px);
    box-shadow: 15px 0 15px rgba(0,0,0,0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border-radius: 9px 0 0 9px;
  animation: slideIn 0.5s ease;
}
.sidebar li{
    width: 100%;
}
.sidebar a{
    width: 100%;
}
/*navigation ends*/

button > box {
    background: linear-gradient(135deg, #7B2FFF 0%, #00D4FF 100%);
    color-scheme: #2EC4B6;
}
button:active {
  transform: scale(0.95);
}

@media (min-width: 600px) {
    .menu-botton{
    display: none;
        padding: 0;
        top: 0;
        bottom: 0;
        right: 0;
        padding-block: 15px;
        position: fixed;
        cursor: pointer;
    }
.arrow{
    position: fixed;
    cursor: pointer;
}

}
@media(max-width: 599px) {
    .hidesidebar{
        display: none;
        cursor: pointer;
    }
    .menu-botton{
        display: block;
        padding: 0;
        top: 0;
        bottom: 0;
        padding-block: 15px;
        right: 0;
        position: fixed;
        cursor: pointer;
    }
}
.reload{
    font-size: 22px;
    font-weight: 800;
    padding: 0;
}
@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
}
.shade{
    width: 90%;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    min-height: 200px;
}
.shade p{
    font-size: 13px;
    color: var(--cyan);
    font-weight: bold;
}
.shade h1{
    font-weight: 1000;
    font-size: 45px;
}
.shade div{
    width: 135px;
    height: 135px;
    border-radius: 25%;
    border: 2px solid var(--royal);
    align-items: center;
    display: flex;
    justify-content: center;
    background: rgba(10,10,15,0.8);
    backdrop-filter: blur(10px);
    box-shadow: 15px 0 15px rgba(0,0,0,0.1);
    background-color: var(--royal);
}

.victorimg{
    height: 125px;
    width: 125px;
    border-radius: 30%;
    position: absolute;
    border: 2px solid var(--Teal);
    background: rgba(10,10,15,0.8);
    backdrop-filter: blur(10px);
    box-shadow: 15px 0 15px rgba(0,0,0,0.1);
}
