/* GENERAL */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

p {
  color: rgb(85, 85, 85);
}

/* TRANSITION */

/* DESKTOP NAV */

.navbar {
  height: 30px;
  width: 100%;
  display: flex;
  position: fixed;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  padding-right: 10%;
  z-index: 100;
  font-weight: 500;
}

.navbar ul li {
  list-style: none;
  display: inline-block;
  padding: 0px 20px;
  text-decoration: none;
  position: relative;
}

.navbar h2{
  padding-left: 90px;
}

.navbar ul li a {
  text-decoration: none;
  color: #000000;
  font-size: 17px;
  position: relative;
}

.navbar ul li a:hover {
  color: var(--text-color-first);
  transform: scale(1.1);
  display: block;

}

.navbar li:hover .dropdown {
  display: block;
}

.dropdown {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 450px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  white-space: wrap;
}

.dropdown ul li {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: var(--text-color-second);
}

.dropdown li a {
  display: block;
  padding: 8px 10px;
  text-decoration: none;
  color: var(--text-color-second);
}

.logo {
  color: var(--text-color-first);
  font-size: 28px;
  padding-bottom: 5px;
  font-weight: 600;
}

.logo span {
  color: hsl(259, 35%, 70%);
}

.logo {
  font-size: 2rem;
}

.logo:hover {
  cursor: default;
}

/* HAMBURGER MENU */

/* PROFILE SECTION */

#profile {
  display: flex;
  justify-content: center;
  gap: 5rem;
  height: 80vh;
  padding-top: 100px;
}

.section__pic-container {
  display: flex;
  height: 400px;
  width: 400px;
  margin: auto 0;
}

.section__text {
  align-self: center;
  text-align: center;
}

.section__text p {
  font-weight: 600;
}

.section__text__p1 {
  text-align: center;
}

.section__text__p2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.title {
  font-size: 3rem;
  text-align: center;
}

#socials-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 1rem;
}

/* BUTTONS */

.btn-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  font-weight: 600;
  transition: all 300ms ease;
  padding: 1rem;
  width: 8rem;
  border-radius: 2rem;
}

.btn-color-1,
.btn-color-2 {
  border: rgb(53, 53, 53) 0.1rem solid;
}

.btn-color-1:hover,
.btn-color-2:hover {
  cursor: pointer;
}

.btn-color-1,
.btn-color-2:hover {
  background: rgb(53, 53, 53);
  color: white;
}

.btn-color-1:hover {
  background: rgb(0, 0, 0);
}

.btn-color-2 {
  background: none;
}

.btn-color-2:hover {
  border: rgb(255, 255, 255) 0.1rem solid;
}

.btn-container {
  gap: 1rem;
}