/*//RESET*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
a,
button,
textarea {
  font: inherit;
}
input {
  letter-spacing: 1px;
  padding: 0.2rem;
}
/*/
/RESET*/
/*GENERAL STYLES*/
html {
  /* background-color: rgb(235, 235, 235); */
  background-color: white;
  padding: 0.3rem;
  scroll-behavior: smooth;
  touch-action: pan-y;

  overflow-x: hidden;
  width: 100%;
}
/*GENERAL STYLES*/
/*NAV-BAR*/
.div-of-all-nav-elements {
  width: 100%;
}
.main-nav {
  position: sticky;
}
.middle-nav-elements {
  display: flex;
  gap: 2rem;
  font-size: 1.4rem;
  justify-content: center;
  list-style: none;
  margin-top: -1.8rem;
}
.middle-nav-elements a {
  text-decoration: none;
  color: black;
}
.middle-nav-elements a:hover {
  color: blueviolet;
  transform: scale(1.1);
  transition: all o.3s ease-in;
}
#home_link_on_nav {
  color: blueviolet;
  text-decoration: underline;
}
.debrah_kobby-on-nav {
  margin-left: 1.5rem;
  margin-top: 0.3rem;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 550;
}
.only_kobby_selected_span {
  color: blueviolet;
}
.message-icon-on-nav {
  display: flex;
  justify-content: flex-end;
  margin-right: 2rem;
  margin-top: -1.4rem;
  font-size: 1.3rem;
}
.message-icon-on-nav i {
  color: blueviolet;
}
/*NAV-BAR*/
/*FIRST PAGE*/
#firstpage {
  height: 70vh;
}
.firstpage_div_of_items {
  display: grid;
  /* grid-template-rows: 100px 100px 100px; */
  grid-template-columns: 2fr 1fr 0.06fr;
  grid-template-areas: "writing pic social";
  align-items: center;
  padding: 0.4rem;
  margin-top: 10%;
  margin-left: 1.4rem;
  margin-right: 1.8rem;
}
.writing_area_on_first_page {
  grid-area: writing;
  white-space: wrap;
}
.picture_on_firstpage {
  grid-area: pic;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid black;
  border-radius: 50%;
  width: 380px;
  height: 380px;
}
.social_on_first_page {
  grid-area: social;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.social_on_first_page i {
  color: gray;
  font-size: 1.5rem;
}
.social_on_first_page i:hover {
  color: blueviolet;
  transform: scale(1.1);
}
.hey_im_prince {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 1.2rem;
  margin-bottom: -1rem;
}
.frontend_text_on_firstpage {
  font-size: 5rem;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-weight: 800;
}
.front_seperate-text-on_first-page {
  color: blueviolet;
}
.developer_text_on_first_page {
  font-size: 5rem;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-weight: 800;
  margin-top: -2rem;
}
.long_intro_text_on_first_page {
  font-size: 1.5rem;
  color: rgb(102, 102, 102);
}
.buttons_div_on_first_page {
  margin-top: 0.5rem;
  display: flex;
  gap: 1rem;
}
.get_in_touch_button_on_first_page {
  padding: 0.6rem;
  width: 130px;
  border-radius: 4px;
  background-color: black;
  color: white;
  font-weight: 600;
  border: none;
}
.get_in_touch_button_on_first_page:hover {
  background-color: rgb(53, 53, 53);
  cursor: pointer;
  transition: all 0.3s ease-in;
}
.browse_projects_button_on_first_page {
  padding: 0.6rem;
  width: 130px;
  border-radius: 4px;
  background-color: rgb(197, 197, 197);
  color: black;
  font-weight: 600;
  border: none;
}

.browse_projects_button_on_first_page:hover {
  background-color: rgb(131, 131, 131);
  cursor: pointer;
  transition: all 0.3s ease-in;
}
/*FIRST PAGE*/
/*ABOUT PAGE*/
#about_me {
  padding: 0.4rem;
  margin-left: 1.4rem;
}
.about_me_on_about_page,
.skills_heading_on_skills_page,
.experience-page-heading-div,
.projects-page-heading {
  font-size: 4rem;
  font-weight: 900;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  position: relative;
  display: flex;
  justify-content: center;
}
.about_me_on_about_page p::after,
.about_me_on_about_page p::before,
.skills_heading_on_skills_page p::after,
.skills_heading_on_skills_page p::before,
.experience-page-heading-div p::before,
.experience-page-heading-div p::after,
.projects-page-heading p::after,
.projects-page-heading p::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 4px;
  background-color: blueviolet;
  top: 55%;
}
.about_me_on_about_page p::after {
  transform: translateY(-50%);
  right: 34%;
}
.about_me_on_about_page p::before {
  transform: translateY(-50%);
  left: 34%;
}

.vertical_ruler_and_about_me_long_text {
  display: flex;
  gap: 1rem;
  align-items: stretch;
}
.vertical_ruler-in-about-me {
  border: 4px solid blueviolet;
  width: 1px;
  height: 220px;

  border-radius: 6px;
}
.about_me_paragraphs {
  font-size: 1.2rem;
  color: rgb(54, 54, 54);
  white-space: wrap;
  flex: 1;
}
/*ABOUT PAGE*/
/*SKILLS PAGE*/
.overall_div_of_skills_page {
  display: flex;
  flex-direction: column;
  padding: 0.4rem;
  margin-left: 2rem;
  margin-bottom: 2rem;
}
.skills_heading_on_skills_page p::before {
  left: 39%;
  transform: translateY(-50%);
}
.skills_heading_on_skills_page p::after {
  right: 39%;
  transform: translateY(-50%);
}

.div_of_all_the_languages_on_skills-page {
  display: flex;
  column-gap: 5rem;
  row-gap: 2rem;
  flex-wrap: wrap;
}
.div_of_all_the_languages_on_skills-page i {
  font-size: 3rem;
}
.language-name-on-skills-page {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
}
.div_of_html_percentage-on-skills-page {
  background-color: blueviolet;
  width: 140px;
  height: 17px;
  border-radius: 6px;
  padding: 0.1rem;
  display: flex;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
}
.css-percentage-on-skills-page {
  background-color: blueviolet;
  width: 140px;
  height: 17px;
  border-radius: 6px;
  padding: 0.1rem;
  display: flex;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
}
.javascript-percentage-on-skills-page {
  background-color: blueviolet;
  width: 130px;
  height: 17px;
  border-radius: 6px;
  padding: 0.1rem;
  display: flex;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
}
.python-percentage-on-skills-pages {
  background-color: blueviolet;
  width: 110px;
  height: 17px;
  border-radius: 6px;
  padding: 0.1rem;
  display: flex;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
}
.c-percentage-on-skills-page {
  background-color: blueviolet;
  width: 90px;
  height: 17px;
  border-radius: 6px;
  padding: 0.1rem;
  display: flex;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
}
/*SKILLS PAGE*/
/*EXPERIENCE PAGE*/
#experience {
  padding: 0.4rem;
  margin-left: 2rem;
  margin-right: 1rem;
  margin-bottom: 2rem;
}
.experience-page-heading-div p::before {
  left: 33%;
  transform: translateY(-50%);
}
.overall_div_of-experience-section {
  display: flex;
}
.experience_section-side-rule {
  border: 4px solid blueviolet;
  width: 1px;
  height: 48px;

  border-radius: 6px;
}
.experience-section-text-on-the-right-side {
  display: flex;
  gap: 2rem;
  margin-top: 0.7rem;
}
.company-name-in-experience-section {
  font-size: 1.4rem;
  font-weight: 600;
}
.experience-for-company-in-experience-page {
  font-size: 1.2rem;
  margin-top: 0.2rem;
}
/*EXPERIENCE PAGE*/
/*PROJECTS PAGE*/
.overall-diV-for-projects-page {
  display: flex;
  flex-direction: column;
  padding: 0.4rem;
  margin-left: 2rem;
  margin-right: 1rem;
  margin-bottom: 2rem;
}
.projects-page-heading p::after {
  right: 36%;
  transform: translateY(-50%);
}
.projects-page-heading p::before {
  left: 36%;
  transform: translateY(-50%);
}

.overall-div-for-all-projects {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.novera-project-img-and-text-div {
  display: flex;
  flex-direction: column-reverse;
  padding: 0.3rem;
  width: 600px;
  margin-bottom: 1rem;
}
.novera-hotel-text-on-right-side {
  display: flex;
  flex-direction: column;
  width: 500px;
  margin-top: 0.2rem;
  padding: 0.1rem;
}
.novera-hotel-img-on-left {
  width: 500px;
  border: 2px solid black;
}
.novera-hotel-project-heading {
  font-size: 2rem;
  justify-self: center;
  font-weight: 800;
}
.paragraph-under-novera-project-heading {
  text-align: center;
  font-size: 1.5rem;
  margin-top: 0.2rem;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  line-height: 1.5;
}

.stack-in-novera {
  display: flex;
  justify-content: center;
}
.stack-in-novera i {
  font-size: 2.4rem;
}
.stack-on-in-novera-project-container {
  color: blueviolet;
}
.pestkell-flex-start-project {
  margin-right: auto;
  margin-left: 1.7rem;
}
/*PROJECTS PAGE*/
/*FOOTER SECTION*/
.footer-overall-div {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 2rem;
}
.my-socials-in-footer {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
.links-div-in-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 3rem;
  row-gap: 1rem;
}
.links-div-in-footer i {
  font-size: 1.6rem;
  color: rgb(59, 59, 59);
  margin-top: 1rem;
}
.links-div-in-footer i:hover {
  color: blueviolet;
  transform: scale(1.2);
  transition: all 0.3s ease-in;
}
.all-rights-reserved-text {
  font-size: 1.3rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
/*FOOTER SECTION*/

/*MEDIA QUERIES*/

/* Large Desktop (1025px and above) */
@media screen and (min-width: 1025px) {
  .firstpage_div_of_items {
    grid-template-columns: 2fr 1fr 0.06fr;
    grid-template-areas: "writing pic social";
  }
  #firstpage {
    height: 70vh;
  }
}

/* Small Desktop (769px to 1024px) */
@media screen and (max-width: 1024px) {
  .firstpage_div_of_items {
    grid-template-columns: 1.5fr 1fr 0.08fr;
    grid-template-areas: "writing pic social";
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .picture_on_firstpage {
    width: 300px;
    height: 300px;
  }
  .frontend_text_on_firstpage,
  .developer_text_on_first_page {
    font-size: 4rem;
  }
  .long_intro_text_on_first_page {
    font-size: 1.3rem;
  }
  .middle-nav-elements {
    gap: 1.5rem;
    font-size: 1.2rem;
  }
}

/* Tablet (481px to 768px) */
@media screen and (max-width: 768px) {
  .firstpage_div_of_items {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "pic"
      "social"
      "writing";
    margin-top: 5%;
    justify-items: center;
    text-align: center;
  }
  .picture_on_firstpage {
    width: 250px;
    height: 250px;
    margin-bottom: 1.5rem;
  }
  .social_on_first_page {
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  .writing_area_on_first_page {
    margin-bottom: 1.5rem;
  }
  .frontend_text_on_firstpage,
  .developer_text_on_first_page {
    font-size: 3rem;
  }
  .developer_text_on_first_page {
    margin-top: 2px;
  }
  .long_intro_text_on_first_page {
    font-size: 1.2rem;
  }
  .buttons_div_on_first_page {
    justify-content: center;
  }
  .middle-nav-elements {
    gap: 1rem;
    font-size: 1.1rem;
  }
  .debrah_kobby-on-nav {
    margin-left: 1rem;
    font-size: 1.1rem;
  }
  .message-icon-on-nav {
    margin-right: 1rem;
    font-size: 1.2rem;
  }
  #firstpage {
    height: 60vh;
  }
  .about_me_on_about_page {
    font-size: 5rem;
  }
  .vertical_ruler-in-about-me {
    height: 320px;
  }
  #about_me {
    margin-top: 8rem;
    margin-right: 0.5rem;
  }
  .novera-hotel-text-on-right-side {
    width: 100%;
  }
  .novera-hotel-img-on-left {
    width: 100%;
  }

  #experience {
    margin-left: -0.2rem;
  }
  .experience_section-side-rule {
    height: 57px;
  }
  .about_me_on_about_page p::after,
  .about_me_on_about_page p::before,
  .skills_heading_on_skills_page p::after,
  .skills_heading_on_skills_page p::before,
  .experience-page-heading-div p::before,
  .experience-page-heading-div p::after,
  .projects-page-heading p::after,
  .projects-page-heading p::before {
    width: 60px;
  }
  .about_me_on_about_page p::after {
    right: 0.1%;
  }
  .about_me_on_about_page p::before {
    left: 0.1%;
  }
  .skills_heading_on_skills_page p::before {
    left: 15%;
  }
  .skills_heading_on_skills_page p::after {
    right: 15%;
  }

  .experience-page-heading-div p::before {
    left: 0%;
  }
  .projects-page-heading p::after {
    right: 5%;
  }
  .projects-page-heading p::before {
    left: 5%;
  }
  .about_me_on_about_page {
    font-size: 4rem;
  }
  .vertical_ruler-in-about-me {
    height: 550px;
  }
  .pestkell-flex-start-project {
    margin-left: 0;
  }
}

/* Mobile (up to 480px) */
@media screen and (max-width: 480px) {
  /* Adjust other elements */
  .debrah_kobby-on-nav {
    margin-right: auto;
  }
  .message-icon-on-nav {
    margin-left: auto;
    font-size: 1.5rem;
  }
  .middle-nav-elements {
    margin-top: 0.3rem;
    font-size: 1.5rem;
  }
  .firstpage_div_of_items {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "pic"
      "social"
      "writing";
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    margin-top: 3%;
  }
  .picture_on_firstpage {
    width: 350px;
    height: 350px;
    margin-bottom: 1rem;
  }
  .social_on_first_page {
    flex-direction: row;
    gap: 1.6rem;
    justify-content: center;
    margin-bottom: 1rem;
  }
  .social_on_first_page i {
    font-size: 2rem;
  }
  .frontend_text_on_firstpage,
  .developer_text_on_first_page {
    font-size: 2.8rem;
    margin-top: 0.4rem;
  }
  .developer_text_on_first_page {
    margin-top: -0.6rem;
  }
  .long_intro_text_on_first_page {
    font-size: 1.4rem;
    margin-top: 0.3rem;
  }
  .hey_im_prince {
    font-size: 1.4rem;
  }
  .buttons_div_on_first_page {
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
  }
  .get_in_touch_button_on_first_page,
  .browse_projects_button_on_first_page {
    width: 100%;
    max-width: 200px;
  }
  #firstpage {
    height: 100vh;
  }
  /* .about_me_on_about_page p::after,
  .about_me_on_about_page p::before,
  .skills_heading_on_skills_page p::after,
  .skills_heading_on_skills_page p::before,
  .experience-page-heading-div p::before,
  .experience-page-heading-div p::after,
  .projects-page-heading p::after,
  .projects-page-heading p::before {
    width: 60px;
  }
  .about_me_on_about_page p::after {
    right: 0.1%;
  }
  .about_me_on_about_page p::before {
    left: 0.1%;
  }
  .skills_heading_on_skills_page p::before {
    left: 15%;
  }
  .skills_heading_on_skills_page p::after {
    right: 15%;
  }

  .experience-page-heading-div p::before {
    left: 0%;
  }
  .projects-page-heading p::after {
    right: 5%;
  }
  .projects-page-heading p::before {
    left: 5%;
  }
  .about_me_on_about_page {
    font-size: 4rem;
  }
  .vertical_ruler-in-about-me {
    height: 550px;
  }
  .pestkell-flex-start-project {
    margin-left: 0;
  } */
  #about_me {
    margin-right: 0.5rem;
    margin-left: -0.1rem;
  }

  .novera-hotel-text-on-right-side {
    width: 100%;
  }
  .novera-hotel-img-on-left {
    width: 100%;
  }

  .overall-diV-for-projects-page {
    margin-left: -0.2rem;
    margin-right: -0.5rem;
  }
  .overall_div_of_skills_page {
    margin-left: 1rem;
  }
  .about_me_on_about_page,
  .skills_heading_on_skills_page,
  .projects-page-heading {
    font-size: 4rem;
  }
  .novera-hotel-project-heading {
    text-decoration: underline;
  }
  .css-percentage-on-skills-page,
  .javascript-percentage-on-skills-page,
  .python-percentage-on-skills-pages,
  .c-percentage-on-skills-page,
  .div_of_html_percentage-on-skills-page {
    font-size: 1rem;
  }
  .experience-page-heading-div p {
    font-size: 3.6rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1128px) {
  .novera-hotel-text-on-right-side {
    width: 100%;
  }
  .novera-hotel-img-on-left {
    width: 100%;
  }
  .about_me_on_about_page p::after {
    right: 20%;
  }
  .about_me_on_about_page p::before {
    left: 20%;
  }
  .skills_heading_on_skills_page p::before {
    left: 30%;
  }
  .skills_heading_on_skills_page p::after {
    right: 30%;
  }

  .experience-page-heading-div p::before {
    left: 18%;
  }
  .projects-page-heading p::after {
    right: 25%;
  }
  .projects-page-heading p::before {
    left: 25%;
  }
  .pestkell-flex-start-project {
    margin: 0 auto;
  }
}
