* {
  box-sizing: border-box;
}

/* Add a gray background color with some padding */
body {
  
  padding: 40px;
  background: #f1f1f1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Header/Blog Title */
.header {
  padding: 30px;
  font-size: 40px;
  text-align: center;
  background: white;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  float: left;
  width: 100%;
  padding: 0px 30px 30px 30px;
  background-color: #efe7db;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  padding-left: 20px;
}

/* Fake image */
.fakeimg {
  background-color: #4caebb;
  width: 100%;
  padding: 0px;
  display: flex;
}

.fakeimg img{
  width:auto;
  height: 175px;  
  margin-right: 0px;
}


/* Add a card effect for articles */
.card {
   background-color: none;
   padding: 20px;
   margin-top: 20px;   

}
.content-card{
  background-color: none;
   padding: 20px;
   margin-top: 0px;  
   display: flex;
   justify-content: flex-start;
}

.con-card-text{
  background-color: none;
}

.content-card img{
  width:500px;
  height: auto;
  margin-top: 35px;
  margin-left: 20px;
  object-fit: contain; /* added this line */
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  padding: 10px;
  display: flex;
  background: #ddd;
  margin-top: 20px;
}

.social-list {  
  margin: 10;
  margin-left: 40px;
  padding: 20;
  display: flex;
  justify-content: flex-start; /* add this */
  background: none;
}

.social-list a {
  text-decoration: none;
  color: inherit;
}


.declaration{
  margin-top: 20px;
  font-size: 8PX;
}


.color-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.color-item {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333333;
  font-weight: bold;
  padding: 10px;
  margin: 10px;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
  text-align: center;
  font-size: 16px;
  width: 200px;
  height: 100px;
}



/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  body {  
  padding: 0px;  
}
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }

  .fakeimg img{
  width:auto;
  height: 70px;  
  margin-right: 0px;
}

  .content-card img{
  width:100%;
  height: auto;
  margin: 0px;
}

.content-card{
 
   display: flex;
   flex-direction: column;
}
.declaration{
  margin-top: 20px;
  font-size: 3PX;
}

.color-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.color-item {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333333;
  font-weight: bold;
  padding: 10px;
  margin: 10px;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
  text-align: center;
  font-size: 12px;
  width: calc(33.33% - 20px);
  height: 100px;
}
}

@media screen and (min-width: 1350px) {

  body {
 
  padding: 2% 15% 2% 15%;
 
}

}