html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
    background-color: #d6d6d6;
  }

  
  header {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 5px;
    width: 100%;
    color: white;
  }
  
  header .nav-title {
    display: flex;
    flex-direction: row;
  }
  
  header .nav-name {
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center
  }
  
  header .nav-name h3 {
    margin: 2px;
  }
  
  header .logo {
    width: 60px;
    height: 60px
  }
  
  header ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    list-style-type: none;
  }
  
  header ul li {
    margin: 0 10px;
  }
  
  header .nav-button {
    color: white;
    font-size: 14px;
    padding: 5px;
  }
  
  header .nav-button:hover {
    cursor: pointer;
    color: red;
    border-bottom: 2px red solid;
  }

  a {
    text-decoration: none !important;
  }
  
  .wallpaper {
    background-image: url("https://i.hizliresim.com/LbbAo1.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 1px 3px 5px #848484;
  }
  
  .wallpaper-write {
    color: white
  }
  
  main .wallpaper h1 {
    font-size: 46px;
  }
  
  main .projects {
    margin-top: 100px;
  }
  
  main .project-section{
    display: flex;
    justify-content: center;
    align-items: center;
    
  }
  main .project-image {
    width: 250px
  }
  main .project-content p{
    color: #474747;
  }
  
  #maps {
    width: 100%;
    height: 250px;
  }
  
  #profile-pic{
    border-radius: 50%;
    width: 180px;
    border: 2px solid #d6d6d6;
  }
  
  .info-div {
    position: relative;
    margin-left: 9%;
    top: -100px;
    flex: 1;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  
  .contact-section .contact {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  
  .form-div {
    flex: 2;
    padding: 10px 100px;
  }
  
  footer {
    background-color: #2b2b2b;
    color: #e8e8e8;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 10px;
  }

  .logo-info {
    font-size: 8px;
  }
  
  @media(max-width: 830px) {
    .contact-section .contact {
    display: flex;
    flex-direction: column;
  }
    
    .form-div {
    flex: 2;
    padding: 10px 20px;
  }
    .wallpaper-write {
    padding: 10px;
  }
    main .wallpaper h1 {
    font-size: 26px;
  }

  .nav-name h3, .nav-name p{
    display: none;
  }

  .project-section {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
  }

  }
  