.articles {
  margin: 0px;
  background: white;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
}

.articles header h1 {
  font-size: 50px;
  color: #000000;
  transition: all 0.3s ease;
}

.articles header h2 {
  font-size: 40px;
  font-family: 'Lora';
  color: #632780;
  transition: all 0.3s ease;
}

.articles header h3 {
  font-size: 30px;
  font-family: 'Lora';
  color: #5847bb;
  transition: all 0.3s ease;
}

.articles p {
  font-size: 20px;
  font-family: 'Sofia Pro';
  font-weight: 100;
}

.articles li {
  font-size: 20px;
  font-family: 'Sofia Pro';
  font-weight: 100;
  line-height: 1.6;
  margin-left: 10px;
}

@media (max-width: 576px) {
  .articles li {
    font-size: 14px;
    font-family: 'Sofia Pro';
    font-weight: 100;
    line-height: 1.2;
    margin-left: 0px;
  }
}

.articles header {
  margin-top: 1rem;
}

.articles img {
  border-radius: 2rem;
}

.articles table th {
  font-size: 20px;
  font-family: 'Lora';
}

.articles table td:nth-child(2), .articles table th:nth-child(2) {
  min-width: 200px;
  border: none;
}

.articles table td:nth-child(1) {
  text-align: left;
  font-weight: 600;
  color: #b72897;
}

.articles table td {
  font-size: 18px;
  line-height: 1.5;
  text-align: justify;
  font-weight: 100;
}

@media (max-width: 768px) {
  .articles header h1 {
    font-size: 35px;
    font-family: 'Lora';
    transition: all 0.3s ease;
  }
}

@media (max-width: 768px) {
  .articles header h2 {
    font-size: 25px;
    font-family: 'Lora';
    transition: all 0.3s ease;
  }
}

@media (max-width: 768px) {
  .articles header h3 {
    font-size: 25px;
    font-family: 'Lora';
    transition: all 0.3s ease;
  }
}

@media (max-width: 576px) {
  .articles p {
    font-size: 15px;
    font-family: 'Sofia Pro';
    font-weight: 100;
    line-height: 1.3;
    text-align: justify;
  }
}

.blog-back-arrow {
  position: fixed;
  bottom: 40px;
  z-index: 9999;
  left: 10%;
  right: 10%;
}

.blog-back-arrow a {
  text-decoration: none;
}

.blog-back-arrow p {
  background: rgba(0,0,0,0.85);
  border-radius: 100px;
  font-size: 18px;
  padding: 5px 10px 5px 10px;
  margin: 4px;
  color: #d2caff;
  transition: all 0.5s ease;
}

@media (max-width: 768px) {
  .blog-back-arrow p {
    background: rgba(0,0,0,0.85);
    border-radius: 100px;
    font-size: 14px;
    padding: 5px 10px 5px 10px;
    margin: 4px;
    color: #d2caff;
    transition: all 0.5s ease;
  }
}

.blog-back-arrow p:hover {
  background: #d2caff;
  color: rgba(0,0,0,0.85);
}

.blog-back-arrow svg {
  font-size: 30px;
}

@media (max-width: 768px) {
  .blog-back-arrow svg {
    font-size: 24px;
  }
}

a {
  text-decoration: none !important;
}

