:root {
  --PrimaryColor: #137695;
  --TitlesColor: #043c4d;
  --LegendsColor: #818181;
  --MenuHoverColor: #00c3ff;
  --ButonTextColor: #ffffff;
}

.dashbord {
  width: 100%;
  height: 600px;
  padding-top: 30px;
  padding-bottom: 60px;
}

.dashbord .container {
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
}

.dashbord .text-container {
  text-align: start;
  width: 50%;
}

.dashbord .text-container h2 {
  font-size: 32px;
  color: var(--TitlesColor);
}

.dashbord .text-container p {
  color: var(--LegendsColor);
  padding-top: 20px;
  display: inline-block;
}

.dashbord .text-container a {
  margin-top: 30px;
}
.dashbord .container img {
  width: 50%;
  margin: 30px 0;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .dashbord .container {
    flex-direction: column;
  }
  .dashbord .text-container {
    width: 100%;
  }
  .dashbord .container img {
    width: 100%;
    margin: 0;
  }
  .dashbord .text-container span {
    text-align: justify;
  }
}
