nav#mainNav {
  border-bottom: 2px solid #37a88e;
}

.projectsBox,
.newProjectsBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.all-projects {
  /* background: rgb(33, 110, 174);
  background: linear-gradient(
    166deg,
    rgba(33, 110, 174, 1) 0%,
    rgba(55, 168, 142, 1) 99%
  ); */

  /* background-image: url("/assets/bg-header.png"); */
  padding: 0px 50px 50px 50px;
  /* background-size: cover;
  background-position: center center;
  background-blend-mode: color-burn; */
  background: #191818;
}

.all-projects h2 {
  /* background: rgb(51, 51, 51);
  background: linear-gradient(
    180deg,
    rgba(51, 51, 51, 1) 52%,
    rgba(4, 15, 23, 1) 100%
  ); */
  color: white;
  padding: 20px;
  /* margin: 0px -50px 50px -50px; */
  text-align: center;
}

.projectContainer {
  background-color: #191818;
  position: relative;
  box-shadow: 0px 0px 10px 9px black;
  border-radius: 20px;
  margin: 20px;
  max-width: 560px;
}

.projectContainer .project {
  border-radius: 20px;
  width: 100%;
}

.projectContainer .projectText {
  position: absolute;
  padding: 50px;
  color: white;
  background-color: rgba(53, 52, 52, 0.95);
  border-radius: 20px;
  height: 100%;
  inset: 0;
  z-index: 90;
  overflow-y: scroll;
}

.projectContainer .projectText h3 {
  color: white;
  margin-bottom: 0px;
  padding-bottom: 0px;
  font-size: 23px;
  position: relative;
}

.projectContainer .projectText h3.title {
  color: #3fb5ae;
  font-size: 32px;
  margin-left: 10px;
  display: inline-block;
}

.projectContainer button {
  float: right;
  border: 0px;
  padding: 5px 13px;
  background-color: #3fb5ae;
  color: white;
}

.projectContainer button.viewDetails {
  padding: 20px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  background-color: #3fb5ae;
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 9;
  border-radius: 20px 0px;
  cursor: pointer;
}

.margin-top-big {
  margin-top: 65px;
}

a.viewVideo {
  margin: 5px;
  color: white;
}

.projectImage {
  width: 100%;
  border-radius: 20px;
}

.hidden {
  display: none;
}

#work {
  padding: 0px;
}

.focusLanguage {
  font-size: 65px;
  line-height: 5px;
}

.js {
  color: gold;
}

.css {
  color: #2194f0;
}

.html {
  color: #dd4b25;
}

.github {
  color: white;
}

.react {
  color: #61dafb;
}

.sass {
  color: #cd6799;
}

.angular {
  color: #b52e31;
}

.bootstrap {
  color: #7f12f9;
}

.nodejs {
  color: #68a063;
}

.skillsBoxes span img.tsImage {
  width: 57px;
}

.skillsBoxes span img.psImage {
  width: 62px;
}

.skillsBoxes span img.sqlImage {
  width: 100px;
  margin-top: 7px;
}

.skillsBoxes span img.axiosImage,
img.axiosImage {
  width: 35px;
}

.skillsBoxes span img.axiosIcon {
  width: 34px;
}

.skillsBoxes span img.gitkrakenImage,
.skillsBoxes span img.gitlabImage {
  width: 65px;
}

.skillsBoxes span img.strapiImage {
  width: 62px;
}

.skillsBoxes span img.rmarkdownImage {
  width: 72px;
}

.skillsBoxes span img.rrouterImage,
img.rrouterImage {
  width: 70px;
}

.skillsBoxes span i {
  font-size: 65px;
  line-height: 53px;
}

.skills-section {
  background-color: #212529;
  color: white;
  border-top: 8px solid #37a88e;
  border-bottom: 8px solid #37a88e;
}

.skillsBoxes span {
  width: 120px;
  text-align: center;
  padding: 20px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 146px;
  font-size: 18px;
}

.skillsBoxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.skillsBoxes span img {
  width: 50px;
}

.focusSection {
  justify-content: flex-start;
}

.focusSection span {
  width: 90px;
  display: block;
  height: 120px;
  margin: 10px 0px 5px 0px;
}

.focusSection p {
  font-size: 13px;
  padding-top: 10px;
  color: silver;
}

.skillTop {
  height: 53px;
}

.imgC {
  height: 65px;
}

/* Scrollbar Styling */

/* Width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 20px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #3fb5ae;
  border-radius: 20px;
}

.specialNote {
  font-size: 14px;
  color: silver;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

label {
  font-weight: 600;
}

input, textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

button {
  width: fit-content;
  background: #3fb5ae;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #3fb5ae;
}

