@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&family=Raleway:wght@200;400&display=swap');



*{
  box-sizing: border-box;
}
body {
  background-color: #94958B;
  font-family: 'lato', sans-serif;
  margin: 0;
}

nav{
  background-color: #80475E;
  color: #94958B;
  display: flex;
  justify-content: flex-end;
  padding: 15px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

header {
  background-image: url(https://miro.medium.com/max/5764/1*_Cu-p0mXOlRvZ3YiDrJBEQ.jpeg);
  background-size: cover;
  background-position: center center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  position: relative;
}

header::after {
  content: '';
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.8;
}

header * {
  position: relative; 
  z-index: 1; 
}

header h1 {
  font-size: 60px;
  margin-bottom: 5px;
  margin-top: 0;
}

header p {
  font-size: 30px;
  margin: 0;
}

section {
  padding: 40px;
  text-align: center;
}

section h2 {
  margin: 0;
}

section p {
  margin-top: 0;
}

.projects-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 810px;
  margin: 20px auto 0;
}
.project-tile {
  margin: 10px;
  max-width: 250px;
}

.project-tile img {
  max-width: 100%;
}

.project-tile p {
  font-size: 20px;
  margin-top: 10px;
}

.bg-pinkish {
  background-color: #A64253;
  color: #fff;
}

.social-ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.social-ul a {
  border-radius: 50%;
  border: 3px solid #fff;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 5px 10px;
  height: 50px;
  width: 50px;
}
footer {
  background-color: #80475E;
  color: #94958B;
  padding: 10px;
  text-align: center;
}

footer .fa-heart {
  color: #fff;
}

@media (max-width: 440px) {
  section {
   padding: 20px; 
  } 
}


