@import url(//fonts.googleapis.com/css?family=Vibur);
html,body{
  height:100%
}
body {
  background: #112 url(//images.weserv.nl/?url=i.imgur.com/6QJjYMe.jpg)  center no-repeat;
  background-size:cover;
  margin:0
}
/* Common styles for the logo */
/* Common styles for the logo */
/* Common styles for the logo */
.logo1 {
    text-align: center;
    width: 100%;
    height: auto;
    margin: 0;
    position: absolute;
    top: 50%; /* Vertically center the logo */
    left: 0;
    transform: translateY(-50%); /* Adjust vertical alignment */
    user-select: none;
  }
  
  .logo1 b {
    font: 400 10vh "Vibur";
    color: #fee;
    text-shadow: 0 -100px 150px, 0 0 2px, 0 0 0.5em #ff4444, 0 0 0.1em #ff1b1b, 0 5px 2px #000;
  }
  
  .logo1 b span {
    animation: blink linear infinite 2s;
  }
  
  .logo1 b span:nth-of-type(2) {
    animation: blink linear infinite 3s;
  }
  
  /* Keyframes stay the same */
  
  /* Keyframes stay the same */
  
  /* Mobile-specific styles */
  @media (max-width: 910px) {
    .logo1 {
      width: 100%; /* Adjust the width to fit the screen */
    }
  
    .logo1 b {
      font: 400 7vh "Vibur"; /* Further reduce the font size for smaller screens */
      text-shadow: 0 -10px 30px, 0 0 2px, 0 0 0.5em #ff4444, 0 0 0.1em #ff4444, 0 5px 2px #000; /* Adjust text-shadow */
    }
  }
  @keyframes blink {
    78% {
      color: inherit;
      text-shadow: inherit;
    }
    79%{
       color: #333;
    }
    80% {
      
      text-shadow: none;
    }
    81% {
      color: inherit;
      text-shadow: inherit;
    }
    82% {
      color: #333;
      text-shadow: none;
    }
    83% {
      color: inherit;
      text-shadow: inherit;
    }
    92% {
      color: #333;
      text-shadow: none;
    }
    92.5% {
      color: inherit;
      text-shadow: inherit;
    }
  }
  
  

/* follow me @nodws */
#btn-twtr{
  clear:both;
  color:#fff;
  border:2px solid;
  border-radius:3px;
  text-align:center;
  text-decoration:none;
  display:block;
  font-family:sans-serif;
  font-size:14px;
  width:13em;
  padding:5px 10px;
  font-weight:600;
  position:absolute;
  bottom:20px;
  left:0;
  right:0;
  margin:0 auto;
  background:rgba(0,0,0,0.2);
  box-shadow:0 0 0px 3px rgba(0,0,0,0.2);
 
}#btn-twtr:hover{color:#fff;opacity:1}



#btn-twtr {
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  padding: 30px 30px;
  margin-bottom: 120px;
  border: 2px solid #f06;
  border-radius: 5px;
  background-color: #f06;
  color: #fff;
  transition: all 0.3s;
}

#btn-twtr:hover {
  box-shadow: 0 0 10px #f06;
  background-color: #f06;
  color: #fff;
}























*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  color: #000;
}

:root {
  --nav-bg: #03000e;
  --main-clr: rgb(255, 255, 255);
  --nav-shadow: 0px 3px var(--main-clr);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: fixed;
  width: 100%;
  background: #03000e;

}

nav .logo {
    color: #fff;
    font-size: 22px;
    font-family: "Playfair Display", serif;
    text-decoration: none; /* Add this line to remove the underline */
  }
  

nav ul {
  --padding: 20px;
  --font-size: 17px;

  list-style: none;
  display: flex;
  align-items: center;
  font-size: var(--font-size);
  overflow-y: hidden;
  transition: 1s cubic-bezier(.68,-0.55,.27,10.55);
  box-shadow: var(--nav-shadow);
}

nav ul li {
  padding: var(--padding);
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  position: relative;
}

nav ul li a::after {
  content: "";
  width: 0%;
  height: 1.7px;
  border-radius: 99px;
  background: var(--main-clr);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s ease;
}

nav ul li a:hover {
  --width: 100%;
  font-weight: bold;
}

nav .menu {
  width: 22px;
  height: 16px;
  cursor: pointer;
  display: none;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  margin: 20px;
}

nav .menu span {
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: #fff;
  transition: 0.3s ease;
  transform-origin: left;
}

nav .menu.active span {
  background: var(--main-clr);
}

nav .menu.active span:nth-child(1) {
  transform: rotate(40deg);
}

nav .menu span:nth-child(3) {
  transform-origin: left;
}

nav .menu.active span:nth-child(3) {
  transform: rotate(-40deg);
}

nav .menu.active span:nth-child(2) {
  transform: scale(0);
}

@media (max-width: 910px) {
  nav .menu {
    display: flex;
  }

  nav ul {
    --height: 0px;

    flex-direction: column;
    background: var(--nav-bg);
    position: absolute;
    width: 100%;
    left: 0;
    top: 56px;
    height: var(--height);
    transition: 1s cubic-bezier(.68,-0.55,.27,1.55);
  }
  nav ul.active {
    --height: calc(
      (((var(--padding) * 2) + (var(--font-size) * 1.5))) * var(--childenNumber)
    );
    /*   (Block Level Padding + The Font Size) * The Number of Children   */
    
    
    transition: 1s ease;
  }

  nav ul li {
    width: 100%;
    text-align: center;
  }
  nav ul li a {
    width: 100%;
    text-transform: capitalize;
  }
}
