/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  aside{
    width: 300px;
    height 400px;
    background-image: url(https://i.pinimg.com/1200x/8a/cb/a6/8acba67a730594e9eb65bcc7aad9de63.jpg);
    background-size: 300px;
    position: absolute; }
    
    .grid{
      display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 5px;
        flex-wrap: wrap;
    }
    
    main{
      width: 850px;
      height: auto;
      background-color: green;
      border: 4px double pink;
      color: #B2FBA5;
      
      margin-left: 315px;
      padding: 10px;
    }
  background-color: white;
  color: black;
  font-family: Caveat;
}