.app {
  min-width: 1000px;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--black1);
  gap: 40px;
  width: unset;
  margin-left: 0;
}
section {
  scroll-margin-block: 20px;
}
.title {
  width: 949px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.title-header {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.5;
}
.title-desc {
  color: var(--grey1);
  font-size: 16px;
  line-height: 1.5;
}
.create-btn {
  padding: 16px 28px;
  border-radius: 8px;
  border: 0;
  background-color: var(--blue1);
  font-family: inherit;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.43;
  cursor: pointer;
  text-decoration: none;
}

.projects {
  width: 949px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 8px;
}
.project-block {
  max-height: 88px;
  padding: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  cursor: pointer;
}
.project-block:hover {
  background: #f6fbff;
}
.project-photo {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-photo img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.project-name {
  color: var(--black1);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}
.project-state {
  display: inline-block;
  padding: 0 6px;
  border-radius: 4px;
}
.project-state.author {
  background: #00ae071a;
  color: #00ae07;
}
.project-state.owner {
  background: var(--shadow);
  font-size: 12px;
}

.create {
  width: 949px;
  position: absolute;
  max-height: 700px;
}
.back-btn {
  position: absolute;
  left: -92px;
  width: 52px;
  height: 52px;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--grey1);
  color: var(--grey1);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  stroke: var(--grey1);
  fill: var(--white);
}
.formInputs {
  display: flex;
  gap: 64px;
  margin: 32px 0;
}
.projectLogo {
  display: flex;
  gap: 16px;
}
.logoPreview {
  width: 260px;
  height: 260px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.logoPreview img {
  width: 140px;
  height: 140px;
  object-fit: cover;
}
.logoBackground,
.logoIcon {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.backgroundSelector,
.iconSelector {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  background-color: #ecf6ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.backgroundSelector.select,
.iconSelector.select {
  border: 1px solid var(--blue1);
}
.backgroundSelector.blue,
.logoPreview.blue,
.project-photo.blue {
  background-color: #ecf6ff;
}
.backgroundSelector.biege,
.logoPreview.biege,
.project-photo.biege {
  background-color: #ffecec;
}
.backgroundSelector.pink,
.logoPreview.pink,
.project-photo.pink {
  background-color: #fdecff;
}
.backgroundSelector.green,
.logoPreview.green,
.project-photo.green {
  background-color: #ecffec;
}
.backgroundSelector.yellow,
.logoPreview.yellow,
.project-photo.yellow {
  background-color: #fffaec;
}
.iconSelector img {
  width: 26px;
  height: 26px;
  object-fit: cover;
}

.projectDetails {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 514px;
}

.newProject-btn {
  font-family: inherit;
  padding: 16px 28px;
  text-align: center;
  color: var(--white);
  border-radius: 8px;
  background: var(--blue1);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
  border: 0;
  cursor: pointer;
}
.uploadImage {
  font-family: inherit;
  padding: 16px 28px;
  text-align: center;
  color: var(--blue1);
  border-radius: 8px;
  background: var(--white);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
  cursor: pointer;
  fill: none;
  stroke: var(--blue1);
  border: 1px dashed var(--blue1);
  display: flex;
  gap: 8px;
}
.uploadImage svg {
  width: 1.4em;
  height: 1.4em;
}
