* {
  box-sizing: border-box;
}

/* Add a gray background color with some padding */
body {
  font-family: monospace;
  padding: 20px;
  background-image: url(https://miiaqa.neocities.org/png/0purin2.jpg);
  color: rgb(56, 56, 56);
}

@import url('https://fonts.googleapis.com/css2?family=Cherry+Swash:wght@400;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Itim&display=swap');    

/* Header/Blog Title */
.header {
  padding: 1px;
  font-size: 40px;
  text-align: center;
  background-color: rgb(90, 50, 27);
  color: rgb(255, 192, 223);   
  font-family: "Cherry Swash"; 
}

/* Create two unequal columns that floats next to each other */
/* Left column */

.container {
    margin-top: 50px;
    margin-left: 300px;
    margin-right: 300px;
}


/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  padding-left: 20px;
  background-color: rgb(92, 66, 45);
  border-width: 7px;       
}

.imgone:hover {
    transform: scale(1.1);
}

/* Add a card effect for articles */
.card {
   background-color: rgb(255, 231, 124);
   padding: 20px;
   margin-top: 20px;
   font-family: "Itim";
   color: rgb(90, 55, 23);
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* 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) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
}
