/* 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, div{
  margin: 0 auto;
  padding: 0;
}

.cute {
  background-color: white;
  color: black;
  font-family: Verdana;
  
}
.cute::before {    
      content: "";
      background-image: url('images/coolcircles.png');
      background-size: cover;
      position: absolute;
      top: 0px;
      right: 0px;
      bottom: 0px;
      left: 0px;
      opacity: 0.25;
}

.cute h1,p {
  position: relative;
  color:black;
}

img{
  position: relative;
}
.center {
  display: flex;
  justify-content: center; 
  align-items: center;     
  height: 100vh;
}  
.container {
  position: relative; /* Establishes positioning context for the text */
  text-align: center;
}
.funtext {
    position: absolute;  
    left: 62.5%;                        /* horizontal alignment */
    top: 69%;                         /* vertical alignment */
    transform: translate(-50%, -50%); /* precise centering; see link below */
    color:#cc4477
}
