* {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Titillium Web", sans-serif;
  background-color: #303841;
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

#navbar {
  background-image: linear-gradient(to bottom, rgb(233, 108, 108), #445c77);
  height: 10vh;
  position: fixed;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.nav-list li {
  padding: 15px;
}

a {
  text-decoration: none;
  color: white;
  font-size: 2.1em;
}

li a:hover {
  border-radius: 5px;
  background-color: green;
}

img {
  display: block;
  width: 100%;
  border-top-left-radius: 2%;
  border-top-right-radius: 2%;
}

#welcome-section {
  background: url("https://www.irbm.com/wp-content/uploads/iStock-909908830-883x572.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 10px rgb(243, 5, 243);
}

#welcome-section > h2 {
  text-align: center;
  font-size: 2.5em;
  padding: 15px;
  color: #7cec78;
}

#welcome-section p {
  font-family: "Dancing Script", cursive;
  font-size: 2.5em;
  text-align: center;
  color: rgb(255, 255, 255);
  background: black;
  border-radius: 10px;
  padding: 10px;
}

#projects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
  width: 100%;
  justify-content: center;
  align-items: center;
  background-color: rgba(56, 53, 53);
}

.projects-header {
  text-align: center;
  font-size: 2em;
  padding: 20px 0;
  color: white;
}

.project-title {
  font-family: "Dancing Script", cursive;
  text-align: center;
  font-size: 1.2em;
  background: #445c77;
  width: 100%;
  color: white;
  padding: 10px 0;
  margin-top: 0;
  border-bottom-left-radius: 15%;
  border-bottom-right-radius: 15%;
  box-shadow: 3px 3px 10px rgb(243, 5, 243);
}

.link-container {
  display: flex;
  flex-direction: column;
  background: #303841;
  padding: 20px 0;
  border-top: 2px solid red;
  border-bottom: 2px solid red;
}

#profile-link {
  align-self: center;
  padding: 15px;
  background: #445c77;
  border-radius: 5px;
}

.fa-facebook-square {
  text-align: center;
}

img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 3px 3px 10px rgb(243, 5, 243);
}

footer {
  background-image: linear-gradient(to bottom, rgb(233, 108, 108), #445c77);
  font-family: "Dancing Script", cursive;
  padding: 20px;
  font-size: 1.2em;
  text-align: center;
  color: white;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-list {
    flex-direction: column;
    text-align: center;
    font-size: 16px;
  }

  .nav-list li {
    padding: 10px;
  }

  #welcome-section > h2 {
    font-size: 2.5em;
    padding: 10px;
  }

  #welcome-section p {
    font-size: 1.8em;
    padding: 5px;
  }

  #projects {
    grid-template-columns: 1fr;
    grid-gap: 10px;
    padding: 20px;
  }

  .project-title {
    font-size: 1.2em;
  }

  .project-image {
    width: 100%;
    height: 200px;
  }

  footer {
    font-size: 1em;
    padding: 10px;
  }
}
