* {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  box-sizing: border-box;
  text-decoration: none;
  list-style-type: none;
  scrollbar-width: auto;
  scrollbar-color: transparent transparent;
}

img {
  width: 100%;
}

body {
  padding: 30px;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 16px;
  background-color: transparent;
}

*::-webkit-scrollbar-track {
  background-color: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: transparent;
}

.wrapper {
  display: flex;
  gap: 150px;
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: 48px;
  padding-right: 94px;
  background-color: rgba(253, 253, 253, 1);
  border-radius: 50px;
  height: calc(100vh - 60px);
  border: 1px solid rgba(210, 210, 210, 0.59);
  overflow-y: scroll;
  background-position: -1px;
  background-image: repeating-linear-gradient(
      rgba(212, 212, 212, 0.31) 0 1px,
      transparent 1px 100%
    ),
    repeating-linear-gradient(
      90deg,
      rgba(212, 212, 212, 0.31) 0 1px,
      transparent 1px 100%
    );
  background-size: 202px 256px;
}

.presentation {
  width: 36%;
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.profile {
  display: flex;
  gap: 12px;
}

.profile__picture {
  width: 72px;
  border-radius: 50px;
  border: 4px solid rgba(253, 253, 253, 1);
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0px 4px 4px 0px rgba(134, 134, 134, 0.15);
}

.title__hey {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  background-color: rgba(37, 99, 235, 1);
  line-height: 36px;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 400;
  border-radius: 900px;
  position: relative;
  top: 0;
  transition: 300ms ease all;
}

.title__hey:hover {
  top: -5px;
}

.title {
  margin-top: 36px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 28px;
}

.description__title {
  margin-top: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 24px;
  color: rgba(25, 25, 25, 1);
}

.links__contact-title {
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: rgba(37, 99, 235, 1);
}

.links__contact-image {
  width: 18px;
}

.links__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: start;
}

.links__contact-detail {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: rgba(25, 25, 25, 1);
  border-bottom: 1px solid rgba(25, 25, 25, 1);
  transition: 300ms ease all;
}

.links__contact-detail:hover {
  color: rgba(37, 99, 235, 1);
  border-color: rgba(37, 99, 235, 1);
}

.projects {
  width: 50%;
}

.projects__title {
  margin-bottom: 35px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: rgba(49, 50, 75, 1);
}

.project__container {
  display: flex;
  flex-direction: column;
  gap: 34px;
  padding-bottom: 30px;
}

.project__image {
  flex-shrink: 0;
  max-width: 342px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(234, 234, 234, 1);
  box-shadow: 0px 4px 10px 0px rgba(206, 206, 206, 0.15);
}

.project__image img {
  display: block;
}

.project__item {
  display: flex;
  gap: 16px;
}

.projects__content-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: rgba(37, 99, 235, 1);
}

.project__content-list {
  display: flex;
  margin-top: 16px;
  gap: 10px;
  flex-wrap: wrap;
}

.project__content-detail {
  line-height: 28px;
  background-color: rgba(81, 130, 239, 1);
  padding-left: 13px;
  padding-right: 13px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  border-radius: 900px;
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
  position: relative;
  transition: 200ms ease all;
  top: 0;
}

.project__content-detail:hover {
  top: -5px;
}

@media only screen and (max-width: 900px) {
  .wrapper {
    flex-direction: column;
    gap: 5px;
    padding-top: 40px;
    padding-right: 40px;
    padding-left: 40px;
    background-size: 100px 100px;
    height: auto;
  }
  .presentation {
    width: 100%;
    position: static;
  }
  .description__title {
    margin-bottom: 30px;
  }
  .links__contact {
    flex-direction: row;
    gap: 8px;
    margin-top: 8px;
    margin-bottom: 48px;
  }

  .projects {
    width: 100%;
  }

  .project__item {
    flex-direction: column;
  }

  .project__container {
    padding-bottom: 0px;
  }
}
