body {
  font-family: Poppins;
  
  --main-color-ll: #0fc2c0;
  --main-color-l: #0caba8;
  --main-color: #008f8c;
  --main-color-d: #015958;
  --main-color-dd: #023535;
  
  --base-color: #f0f0f0;
  
  --text-color: #333333;
  --text-color-white: #f0f0f0;
  
  background: var(--base-color);
}

body {
  margin: 0;
}

.header {
  display: flex;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 60px;
  color: var(--text-color-white);
  background-image: linear-gradient(to bottom, var(--base-color) 90%, transparent 100%);
}

.header-title {
  margin: 0 20px;
  font-size: 30px;
  color: var(--main-color-dd);
}

.content {
  margin-top: 80px;
  width: 100%;
}

.project {
  box-sizing: border-box;
  margin: 20px;
  padding: 40px;
  min-height: 300px;
  color: var(--text-color-white);
  border-radius: 30px;
  box-shadow: 0 0 20px 0 #00000088;
}

.project-chart {
  background: linear-gradient(to bottom right, #008803, #1d521e);
}

.project-title {
  font-size: 40px;
  font-weight: bold;
}

.project-description {
  margin: 20px;
}

.project-button {
  all: unset;
  padding: 0 20px;
  min-width: 100px;
  height: 50px;
  border-radius: 25px;
  background: var(--main-color-dd);
  font-weight: bold;
  color: var(--text-color-white);
}

.project-editor {
  background: linear-gradient(to bottom right, #023535, #008f8c);
}

.project-editor-image {
  float: right;
  max-width: 300px;
  max-height: 200px;
  border: thin solid var(--main-color-dd);
  border-radius: 15px;
}

.about-editor {
  margin: 30px;
}

.about-editor h2 {
  font-size: 30px;
  border-bottom: 2px solid #008f8c;
}

.about-editor img {
  float: right;
  max-width: 500px;
  max-height: 300px;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 #00000088;
}

.about-tip {
  margin: 20px;
  padding: 20px 20px;
  border: 2px solid var(--main-color);
  border-radius: 20px;
}

.about-tip p {
  font-weight: bold;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  padding: 50px;
  background: #cccccc;
}
