/* Font-Family */
.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

html, body {
  height: 100%;
  margin: 0;
}

/* body */
body {
  display: flex;
  flex-direction: column;
  background-color: #d96b34;
}

.content {
  flex: 1;
}

/* Navbar */

.navbar {
  padding: 0 20px;
  background: #000;
}

.cuz-nav-brand {
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.cuz-nav-link {
  margin: 0 20px;
  color: white;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
}

.cuz-nav-link:hover {
  color: #d96b34;
  transition: 0.2s ease-in-out  ;
}
/* Navbar End */

/* Section */
.name {
  color: white;
  font-weight: 800;
  letter-spacing: 2px;
}

.social-icons {
  display: flex;
  list-style: none;
  margin-top: 30px;
  text-align: center;
  margin-left: 130px;
}

.social-links {
  text-decoration: none;
  cursor: pointer;
  font-size: 35px;
  margin: 0 10px;
  color: black;
}

.social-links:hover {
  color: #d96b34;
  background-color: black;
  transition: 0.3s ease-in-out;
  border-radius: 10px;
  transform: scale(1.05);
  box-shadow: 0 8px 10px rgba(0,0,0,1);
  transition: .3s ease-in-out;
}

.profile-photo {
  width: 300px;
  height: 320px;
  border-radius: 50%;
  object-fit: fill;
  border: 3px solid black;
  transition: transform 0.3s;
}

.profile-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 10px rgba(0,0,0,1);
  transition: .3s ease-in-out;
}

/* Footer */
.footer {
  background-color: black;
  color: white;
  padding: 20px 0;
  text-align: center;
}

.footer-link {
  color: white;
  text-decoration: none;
}

.footer-link:hover {
  color: #d96b34;
  transition: 0.2s ease-in-out;
}

/* Footer End */

@media screen and (max-width:768px) {
  .social-icons {
    margin-left: 50px;
  }
}