* {
  margin: 0;
  padding: 0;
}
nav{
    height: 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 20px;
}
ul{
  width: 25vw;
  flex-direction: row;
  align-items: center;
  height: 5vh;
  display: flex;
  justify-content: space-between;
  list-style: none;
}
ul a{
  text-decoration: none;
  color: #000;
}
.logo{
  font-size: 50px;
  color: blue;
}
.proj{
  display: flex;
  align-items: center;
  flex-direction: column;
  
}
.Huuber , .laptop{
  display: grid;
  grid-template-rows: 400px ;
  grid-template-columns:200px  400px;
  gap: 50px;
 
  
}
/* .Huuber{
    box-shadow: 10px 5px 5px black;
    border: 1px black solid;
}
.laptop{
  box-shadow: 10px 5px 5px black;
  border: 1px black solid;
} */
.container{
  display: flex;
  align-items: center;
  /* border: 2px black solid; */
  flex-direction: column;
  padding: 15px;
}
#Huuber{
  height: 200px;
  padding: 10px;
}
.pp{
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: space-around;
  height: 25vh;
  border-bottom: 2px rgb(181, 194, 2) solid;
  box-shadow: 5px 5px 5px black;
  border-radius: 1rem;
  border-top: #000 1px solid;
  border-left: #000 1px solid;
  border-right-color: #000 1px solid;
  padding: 10px;
}
.pp2{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 25vh;
 border-bottom: 2px rgb(0, 238, 255) solid;
 box-shadow: 10px 5px 5px black;
    border-radius: 1rem;
    border-top: #000 1px solid;
    border-left: #000 1px solid;
    border-right-color: #000 1px solid;
  padding: 10px;
}
.icon{
  color: blue;
  size: 200px;
}
.h2Huuber{
  color: rgb(176, 176, 2);
}
.h2laptop{
  color: blue;
}
footer{
  background-color: blueviolet;
  color: white;
  height: 300px;
  width: 99vw;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-around;
}
.me{
  display: flex;
  justify-content: space-around;
  width: 15vw;
}
.tg{
  display: flex;
  justify-content: space-between;
  width: 5vw;
  
}
#tg{
  color: aliceblue;
}
.by{
  display: flex;
  justify-content:space-between ;
  width: 10vw;
  font-size: 15px;
}
.info{
  width: 99vw;
  color: white;
  display: flex;
  background-color: rgb(65, 107, 236);
  justify-content: center;
  font-size: 15px;
}


@media (max-width: 768px) {
  nav {
    flex-direction: column;
    height: auto;
    padding: 10px;
  }

  .logo {
    font-size: 30px;
    margin-bottom: 10px;
  }

  ul {
    flex-direction: column;
  }

  .Huuber, .laptop {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .me, .tg, .by {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .info {
    font-size: 12px;
  }
}