* {
  margin: 0px;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background-color: #000;
}


header {
  position: relative;
  height: 140px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -10px;
  background-color: #1f1f1f;
  border-radius: 0 0 20px 20px;
  box-shadow: 0px 0px 5px 2px #ffd036;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

header h1 {
  position: relative;
  height: 80px;
  width: 95%;
  margin-top: 2px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 5rem;
  font-family: 'Arial Blackcursive', Courier, monospace;
  color: #feffae;
  text-shadow: 2px 2px 10px red;
}

header .contact {
  position: relative;
  height: 10px;
  width: 100%;
  margin-top: 5px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

header .contact div {
  height: 30px;
  width: 150px;
  background-color: #6d6d6d57;
  border: 0.5px solid black;
  border-radius: 5px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

header .contact i {
  height: 18px;
  width: 18px;
  color: white;
}

header .contact i:hover{
  color: hsl(0, 0%, 80%);
}


header .contact a {
  display: grid;
  font-size: 1.5rem;
  place-items: center;
  color: white;
  text-decoration: none;
  overflow: hidden;
}

header .contact a:hover{
  color: hsl(0, 0%, 80%);
}

main {
  position: relative;
  height: 2000px;
  width: 100%;
}

main img {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  width: 800px;
  filter: brightness(30%);
  z-index: -1;
}

 main .info{
  display: grid;
  margin: 30px;
  grid-template-columns: 1fr 1fr;
  row-gap: 0px;
  column-gap: 30px;
}

main .info h4 {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  height: 60px;
  width: 65%;
  top: 80px;
  display: grid;
  place-items: center;
  font-size: 230%;
  color: #000;
  font-family: Arial Black;
  background: linear-gradient( to right, #f12711b6, #f5af19af);
  box-shadow: 0 0 6px gray;
  border-radius: 30px;
  z-index: 2;
}

main .info ul {
  position: relative;
  height: 400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.85rem;
  padding: 100px 5px 10px 50px;
  border-radius: 10px;
  color: #ffd036;
  text-shadow: 1px 1px 2px #ffd040;
  background-color: rgba(128, 128, 128, 0.313);
  box-shadow:0 0 6px #ffd036;
  z-index: 1;
}

main .info ul li {
  position: relative;
  padding: 5px;
}

main .info ul li a{
  text-decoration: none;
  color: #ffd036;
  text-shadow: 1px 1px 2px #ffd040;
}

main .info ul li a:hover{
  transition: 0.2s ease-in-out;
  font-size: 2.5rem;
  color: hsl(46, 65%, 56%);
  text-shadow: 1px 10px 10px #a58629;

}


main .info > div{
  height: 400px;
}

main .info > div ul:hover{
  transition: 1.0s ease-in-out;
  border: 10px #c98124;
  box-shadow:0 0 100px #ffd036;
}

main .info .project,
main .info .interests{
  margin-top: 80px;
}

footer {
  position: relative;
  top: 0px;
  height: 30px;
  width: 100%;
}

footer p {
  position: relative;
  height: 100%;
  width: 100%;
  color: white;
  text-align: right;
}

@media screen and (max-width:789px){
  header {
    height: 100px;
  }
  header h1{
    margin-top: 10px;
    height: 50px;
    font-size: 50px;
  }
  header .contact{
    gap: 10px;
  }
  header .contact div{
    background-color: #ffffff00;
    width: 30px;
  }
  header .contact  a {
    display:none;
  }
  main{
    height: 2400px;
  }
  main .info{
    grid-template-columns: auto;
    margin: 30px;
    row-gap: 60px;
  }
  main .info div h4{
    height: 50px;
    font-size: 1.9rem;
    font-weight: 700;
  }
  main .info ul{
    margin-top: 10px;
    padding: 85px 5px 10px 30px;
    font-size: 1.3rem;
  }
  main .info .project,
  main .info .interests{
  margin-top: 0px;
}
}