body, html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: black;
}

section {
  clear: both;
  float: left;
  width: 100%;
  padding: 20px;
}

.nav {
  display: flex;
  justify-content:space-around;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ff4f00;
}

@media only screen and (min-width: 768px) {
  .nav {
    justify-content: flex-end;
    padding-right: 20px;
  }
}

.nav-list {
  display: flex;
}

.nav-list a {
  font-size: 20px;
  font-weight: 550;
  padding: 10px;
}

ul {
  list-style: none;
  padding: 0;
}

.about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: #222;
  margin-bottom: 0px;
}

.about h1{
  font-size: 60px;
  color: #ff4f00;
}

.about p {
  font-size: 24px;
  color: #ff4f00;
  margin-top: 12px;
}

.projects {
  background: #bebebe;
}

.projects h2 {
  justify-content: center;
  text-align: center;
  font-size: 35px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-gap: 30px;
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  margin-bottom: 15px;
}

.project-image {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.project-tile {
  outline: none;
}

.project-title {
  font-size: 24px;
  font-weight: 550;
  padding: 15px;
  background-color: #949494;
  text-align: center;
  margin-top: 0;
}

.profile-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  height: 55px;
  max-width: 230px;
  background-color: #949494;
  text-decoration: none;
  font-size: 24px;
  color: black;
  font-weight: 600;
}

.contact-section {
  background-color: #222;
  min-height: 400px;
  text-align: center;
}

.contact-section h2 {
  font-size: 50px;
  color: #ff4f00;
}

.contact-section p {
  color: white;
  font-size: 28px;
  padding: 60px 0;
}
