@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
        url('../fonts/Montserrat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
        url('../fonts/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sour Gummy Expanded';
    src: url('../fonts/SourGummyExpanded-Medium.woff2') format('woff2'),
        url('../fonts/SourGummyExpanded-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1400px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
}

.home-page {
    background: black;
}

.home-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100vh;
    background: #d3d3d3;
    clip-path: polygon(0 0, 85% 0, 70% 100%, 0% 100%);
}
.header {
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    display: flex;
}

.navbar-list {
    display: flex;
    gap: 40px;
}

.navbar-links {
    list-style: none;
}

.navbar-link {
    text-decoration: none;
    color: white;
    font-family: 'Montserrat';
    font-weight: bold;
}

.navbar-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: white;
    transition: width 0.7s ease;
}

.navbar-link:hover::after {
    width: 100%;
}

/* Hero */
.hero-section {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
    align-items: center;
}

.hero-content {
    position: relative;
}

.hero-paragreff {
    font-family: "Montserrat";
    font-weight: bold;
    font-size: 37px;
    line-height: auto;
    margin-bottom: 34px;
}

.hero-title {
    font-family: "Montserrat";
    font-weight: bold;
    font-size: 60px;
    margin-bottom: 5px;
}

.heroFronParagreff {
    font-family: "Montserrat";
    font-weight: bold;
    font-size: 22px;
    color: #909090;
    margin-bottom: 126px;
}


.hero-icon {
    display: flex;
    gap: 30px;
    list-style: none;
}

.hero-imgs {
    background-color: #C4C4C4;
    padding: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    opacity: 1;
}

.hero-imgs:hover {
    opacity: 0.6;
    transition: 0.4s ease;
}

.branch-icon {
    margin-top: -150px;
    margin-right: 341px;
    transform: rotate(10.5deg);
}

.js-logo {
    position: absolute;
    margin-top: -429px;
    margin-left: 335px;
    transform: rotate(40deg);
}

.html-logo {
    position: absolute;
    margin-top: -342px;
    margin-left: 398px;
    transform: rotate(90deg);
}

.css-logo {
    position: absolute;
    margin-top: -426px;
    margin-left: 233px;
    transform: rotate(40deg);
}

.end {
    text-align: center;
    color: white;
    font-family: "Montserrat";
    position: absolute;
    margin-top: -94px;
    margin-left: 350px;
    font-weight: bold;
}

.links {
    display: flex;
    padding-left: 15px;
    padding-right: 15px;
    justify-content: space-between;
}

.netlify {
    text-decoration: none;
    color: black;
    gap: 10px;
    border: 2px solid black;
    padding-left: 15px;
    width: fit-content;
    position: relative;
    align-items: center;
    display: flex;
    background-color: #d3d3d3;
    border-radius: 8px;
    font-family: "Montserrat";
    padding: 15px;
}

.netlify:hover {
    background-color: rgb(0, 247, 255);
    transition: 0.7s ease;
}

.github {
    text-decoration: none;
    color: black;
    font-family: "Montserrat";
    gap: 10px;
    border: 2px solid black;
    padding-left: 15px;
    width: fit-content;
    position: relative;
    align-items: center;
    display: flex;
    background-color: #d3d3d3;
    border-radius: 8px;
    padding: 15px;
}

.github:hover {
    background-color: rgb(0, 247, 255);
    transition: 0.7s ease;
}

/* PROJECTS PAGE */

.projects-page {
    background-color: #909090;
}

.projects-section {
    padding-left: 45px;
    padding-bottom: 20px;
    display: grid;
    gap: 20px;
    justify-content: space-between;
    grid-template-columns: repeat(2, 1fr);
}

.pr-container {
    width: fit-content;
    height: fit-content;
    color: black;
    border-radius: 8px;
    background-color: #d3d3d3;
    padding-bottom: 15px;
}

.pr-container > h4 {
    padding-top: 15px;
    text-align: center;
    font-family: "Montserrat";
    font-size: 20px;
    margin-bottom: 15px;
}

.pr-list {
    list-style: none;
}

.pr-container > p{
    font-family: "Montserrat";
    text-align:center;
    width: 620px;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 30px;
}

@media (max-width: 1750px) {
  .branch-icon {
    margin-right: 338px;
  }
}

@media (max-width: 1700px) {
  .branch-icon {
    margin-right: 336px;
  }
}

@media (max-width: 1600px) {
  .branch-icon {
    margin-right: 334px;
  }
}

@media (max-width: 1500px) {
  .branch-icon {
    margin-right: 331px;
  }
}

@media (max-width: 1400px) {
  .branch-icon {
    margin-right: 329px;
  }
}

@media (max-width: 1390px) {
  .branch-icon {
    margin-right: 323px;
    transform: rotate(9.9deg);
  }
}

@media (max-width: 1380px) {
  .branch-icon {
    margin-right: 318px;
    transform: rotate(10deg);
  }
}

@media (max-width: 1370px) {
  .branch-icon {
    margin-right: 314px;
    transform: rotate(10deg);
  }

  .end {
    margin-left: 200px;
  }
}

@media (max-width: 1360px) {
  .branch-icon {
    margin-right: 308px;
    transform: rotate(10deg);
  }
}

@media (max-width: 1350px) {
  .branch-icon {
    margin-right: 302px;
    transform: rotate(10deg);
  }
}

@media (max-width: 1340px) {
  .branch-icon {
    margin-right: 297px;
    transform: rotate(10deg);
  }
}

@media (max-width: 1330px) {
  .branch-icon {
    margin-right: 292px;
    transform: rotate(10deg);
  }
}

@media (max-width: 1330px) {
  .branch-icon {
    margin-right: 292px;
    transform: rotate(10deg);
  }
}
