@import url('https://fonts.googleapis.com/css2?family=Rubik+Glitch&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@900&display=swap');
/* General styles */
*{
  overflow: -moz-hidden-scrollable;
  font-family: 'Inter';
}
html {
  scroll-behavior: smooth;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #111;
    color: #fff;
    overflow-x: hidden;
  }
  
  header {
    background-color: rgba(17,17,17,0.5);
    padding: 20px;
    position: fixed;
    width: 100%;
    z-index: 1000;
  }
  
  nav ul {
    list-style: none;
    border-radius: 15px;
  }
  nav ul img{
    text-align: center;
    padding-right: 5px;
    justify-content: center;
    margin-bottom: -3px;
    transition: all 0.5s ease-in-out;
    border-radius: 10px;
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 5px;
  }
  nav ul li {
    display: inline;
    margin-right: 20px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #fff;
  }
  .webicon{
    margin-top: -300px;
    margin-left: 500px;
  }
  nav ul img:hover {
    width: 35px;
    height: auto;
    background-color: #00abf0;
  }
  
  /* Hero section */
  
  .hero {
    height: 100vh;
    padding: 0 10%;
    display: flex;
    justify-content: center;
    background-color: #585858;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
  }
  .gamingsetup{
    margin-left: 450px;
  }
  .hero-content {
    margin-top: 700px;
    max-width: 600px;
  }
  .hero-content h1 {
    font-family: 'Rubik Glitch';
    font-size: 56px;
    font-weight: 700;
  }

  .hero-content h3 {
    font-size: 32px;    
    font-weight: 700;
    color: #00abf0;
  }
  .webicon {
    margin-top: -350px;
  }
  .hero-content p {
    font-size: 16px;
  }

  .hero-content .btn-box {
    margin-left: 220px;
    display: flex;
    justify-content: space-between;
    height: 50px;
    transition: all 0.5s;
  }

  .btn-box a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 100%;
    background: #00abf0;
    border: 2px solid #00abf0;
    border-radius: 8px;
    font-size: 19px;
    color: #081b29;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.5s;
  }

  .btn-box a:hover{
    background: transparent;
    color:#00abf0;
  }
  /* About section */
  .about {
    padding: 100px 20px;
    text-align: center;
  }
  .about{
    height: 300px;
  }
  .about img{
    margin-left: -800px;
    margin-top: -50px;
    width: 250px;
    height: auto;
    border-radius: 15px;
  }
  .about-content p{
    width: 300px;
    margin-left: 455px;
    margin-top: -190px;
    text-align: center;
  }
  /* Projects section */
  .projects {
    overflow: hidden;
    background-color: #222;
    text-align: center;
  }

  .project-item {
    text-align: center;
    display: inline-block;
    margin-left: 50px;
    height: 250px;
    width: 350px;
    padding-top: 90px;
    padding-left: 7px;
    padding-right: 7px;
    background-color: rgba(17,17,17,0.2);
    border-radius: 15px;
    margin-bottom: 30px;
    transition: all 0.5s;
  }
  .project-item:hover{
    border: #111 thick;
    background-color: #111;
  }
  .project-item img{
    opacity: 0.6;
  }
  .projects h1{
    text-align: center;
    width: 300px;
    margin-left: 480px;
    font-size: 15px;
  }
  
  .projects img {
    max-width: 100%;
    border-radius: 8px;
  }
  
  /* Contact section */
  .contact {
    padding: 100px 20px;
    text-align: center;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 20px;
    background-color: #222;
    position: relative;
    bottom: 0;
    width: 100%;
  }