#welcome-section {
  height: 100vh;
  width: 100vw;
  background-image: url(https://www.pixelstalk.net/wp-content/uploads/2016/10/Binary-Code-Background-for-Desktop.jpg);
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  position: relative;
  background-position: center;
}

#navbar {
  width: 100%;
  padding: 20px;
  position: fixed;
  top: 0;
  background-color: rgb(235, 143, 107);
  display: flex;
  text-align: end;
  justify-content: flex-end;
  z-index: 2;
}

.nav-link {
  font-weight: bolder;
  font-size: larger;
  color: rgb(24, 9, 119);
  margin-left: 70px;
  margin-right: 70px;
}

body {
  background-color: rgb(235, 178, 231);
  /* background-image: url(https://i.pinimg.com/736x/d4/5f/ad/d45fad754767f905cae95cc1d6d3a155.jpg);
  background-size: cover;
  index: 0;*/
}

#welcome-section::after {
  content: "";
  position: absolute;
  background-color: black;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.8;
}

#intro,
#intro2,
#intro3 {
  color: white;
  z-index: 1;
}

#intro {
  font-size: 70px;
  margin-bottom: 0px;
}

#intro2 {
  font-size: 40px;
  margin-top: 0px;
}

#intro3 {
  margin-left: 50px;
  margin-right: 50px;
  text-align: center;
}

.project-tile {
  display: flex;
  flex-wrap: wrap;
  margin: 70px;
  gap: 70px;
  transition: transform 1s ease;
}

#project-intro {
  text-align: center;
  font-size: 30px;
  font-weight: bolder;
  text-decoration: underline;
}

.project-tile p {
  text-align: center;
  font-size: larger;
  color: black;
}

.project-card {
  width: 300px;
  text-align: center;
}

.project-card a {
  display: block;
}

.project-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.project-title {
  font-size: 20px;
  font-weight: bolder;
  margin-top: 5px;
  text-decoration: underline;
}

.project-description {
  font-size: 16px;
  color: #333;
}

a {
  text-decoration: none;
}

a:hover {
  transform: scale(1.1);
}

#contact {
  background-color: rgba(122, 45, 45, 0.402);
  text-align: center;
  padding: 100px;
  margin: 0;
}

#contact p {
  font-size: 30px;
  margin-top: 5px;
}

#social-intro {
  font-size: 40px;
  margin-bottom: 0px;
}

#contact a {
  font-size: 25px;
  margin: 0 30px;
}

i {
  font-size: 50px;
}

#contact a:hover {
  text-decoration: underline;
}

footer {
  background-color: rgba(165, 42, 42, 0.402);
  padding: 10px;
  border-top: 5px solid rgb(182, 70, 70);
}

@media (max-width: 760px) {
  #intro {
    text-align: center;
  }
  .contact-btn {
    line-height: 90px;
  }
}

@media (min-width: 760px) {
  .project-tile {
    justify-content: center;
  }
  #navbar {
    justify-content: space-around;
  }
}
