.article-wrapper{
    margin-top: 75px;
    margin-bottom: 25px;
}

.article-container{
    max-width: 940px;
    margin: auto;
    padding: 25px;
    text-align: left;
    background-color: whitesmoke;
    border-radius: 15px;
}

.img-blogpost{
    width: 800px
}

.in-text-link{
    text-decoration: solid;
    font-weight: bold;
    color: black;
}


.article-h1{
    font-size: 50px;
    font-weight: 500;

}

.article-h2{
    font-size: 30px;
    font-weight: 600;
}

.article-p{
    font-size: 22px;
}

.article-article{
    margin-top: 0px;
    border-radius: 15px;
}


.article-img{
    width: 940px;
    border-radius: 15px;
}

.back-button {
  background-color: rgba(51, 51, 51, 0.05);
  border-radius: 8px;
  border-width: 0;
  color: #333333;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  list-style: none;
  margin: 0;
  padding: 10px 12px;
  text-align: center;
  transition: all 200ms;
  vertical-align: baseline;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  margin-bottom: 20px;
  transition: box-shadow 200ms ease-in-out;
}


:hover.back-button{
  -webkit-box-shadow: 0px 10px 20px -8px rgba(0,0,0,0.20);
  -moz-box-shadow: 0px 10px 20px -8px rgba(0,0,0,0.20);
  box-shadow: 0px 10px 20px -8px rgba(0,0,0,0.20);
}
@media screen and (max-width: 1200px){
    .article-img {
        width: 100%; /* Adjust the image width to be responsive */
        
    }

    .article-h1{
        font-size: 50px;
        font-weight: 500;
    
    }
    
    .article-h2{
        font-size: 30px;
        font-weight: 600;
    }
    
    .article-p{
        font-size: 22px;
    }
}

@media screen and (max-width: 800px){

    .article-container{
        margin-left: 10px;
        margin-right: 10px;
    }

    .article-h1{
        font-size: 35px;
        font-weight: 500;
        line-height: 90%;
    }
    
    .article-h2{
        font-size: 27px;
        font-weight: 600;
        
    }
    
    .article-p{
        font-size: 20px;
    }
}


@media (max-width: 768px) {

    .accordion-title {
    font-weight: 500;
    font-size: 19px;
      color: #000000;
  
      
  }
  
  .accordion-content {
    font-size: 17px;
  }
  
}

  
  .accordion {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
  }
  
  .accordion-item {
    background: whitesmoke;
    border-top: 1px solid #ddd;
  }
  
  .accordion-button {
    background: whitesmoke;
    border: none;
    padding: 1em;
    width: 100%;
    text-align: left;
    position: relative;
    font-size: 1.25rem;
    cursor: pointer;
    outline: none;
    color: #000000;
  }
  
  .accordion-title {
    font-weight: 500;
    font-size: 19px;
  }
  
  .icon-1 {
    position: absolute;
    right: 1em;
    transition: transform 0.2s ease-in-out;
  }
  
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-in-out;
    padding: 0 1em;
    font-size: 17px;
    line-height: 150%;
  }
  
  .accordion-content p {
    padding: 1em 0;
    margin: 0;
  }
  
  [aria-expanded="true"] .icon-1 {
    transform: rotate(180deg); /* You can remove this if you don't want the rotate effect */
  }

