/* 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: black;
  color: #ffffff;
  font-family: Verdana;
  margin: 0;
}

.italianno-regular {
  font-family: "Italianno", cursive;
  font-weight: 400;
  font-style: normal;
}

.noto-serif-sc-<uniquifier> {
  font-family: "Noto Serif SC", serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

bg {
  position: relative;
}

.bg a {
 text-decoration: none;
 color: #e22f7d;
 text-shadow: rgba(226,47,125,1) 0px 0px 10px,
              rgba(226,47,125,1) 0px 0px 15px
}

.text {
  position: absolute;
  z-index: 2;
  bottom : 45%;
  left: 40%;
  transform: translateX(-50%);
  margin: 0 0 30px 230px;
  font-family: "Italianno";
  font-size: 40px;
}

.bg img {
  width: 40vw;
  position: absolute;
  bottom: 0;
  left: 40%;
  transform: translateX(-50%);
  max-width: none;
  height: auto;
}

lily {
  position: relative; 
}

.lily img {
  width: 50vw; 
  position: absolute;
  max-width: none;
  height: auto;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -10;
}

.content {
  background-color: #485641;
  opacity: 0.6;
  width: 600px;
  margin: auto;
  height: 700px;
}
        
@media (max-width: 600px) {
  .bg img {
    width: 80vw; 
  }
  .text {
    bottom: 15%;
    width: 90%;
    font-size: 20px;
  }
  
  .lily img {
    width: 90vw;
    text-shadow: rgba(226,47,125,1) 0px 0px 10px,
              rgba(226,47,125,1) 0px 0px 15px;
  }
  .content {
    background-color: #485641;
    width: 300px;
    margin-top: 20px;
    margin-bottom: 20px;
    height: 600px;
  }
}

::selection {
      background: #ffb7b7;
    }
::-moz-selection {
      background: #ffb7b7;
    }