/* 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 {
  background-color: lightcyan;
  color: black;
  font-family: Verdana;
  height: 4000px;
}

  .container {
    display: grid;
    grid-template-columns: auto auto;
    margin: auto;
    padding: 20px;
    }

  .box {
    border-radius: 25px;
    position:absolute;
    width: 60px;
    height: 80px;
    overflow: auto;
    resize: both;
    background-color: white;
    }
  .text1 {
    color: lightblue;
    border: aqua 20px groove;
    margin: 50px;
    z-index: 1;
    }
    
  .text2 {
    color: lightpink;
    border: magenta 20px groove;
    margin: 200px;
    z-index: 2;
    }
    
  .text3 {
    color: lightgreen;
    border: lime 20px groove;
    margin: 350px;
    z-index: 3;
    }
    
  .text4 {
    color: lightyellow;
    border: yellow 20px groove;
   margin: 500px;
   z-index: 4;
    }
  
  .pic {
    width: 100%;
    }
