/* 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." */

@import url('https://fonts.googleapis.com/css2?family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Cherry+Bomb+One&family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap');


body {
  background-image: url("stuff/background1.jpg");
  color: ghostwhite;
  font-family: Sour Gummy;
  
  margin-right: 145px;
  margin-left: 145px;
  margin-top: 5px;
  margin-bottom: 10px;
}


.pink-block{
  padding: 25px;
  background: url("stuff/pink.jpg");
  background-repeat: repeat;
}


.container {
  position: relative;
  text-align: left;
}


.grid-container {
  display: grid;
  gap: 10px;
  padding: 10px;
}


.title {
    color: white;
    text-shadow:
    -2px -2px 0 #ee4d4d,
    2px -2px 0 #ee4d4d,
    -2px 2px 0 #ee4d4d,
    2px 2px 0 #ee4d4d,  
    -4px 0 0 #ee4d4d,
    4px 0 0 #ee4d4d,
    0 4px 0 #ee4d4d,
    0 -4px 0 #ee4d4d;

   position: absolute;
   bottom: 16px;
   left: 16px;
}


.banner {
  border: 5px solid #ee4d4d;
  border-radius: 11px;
}


.round {
  border: 4px solid red;
  border-radius: 8px;
  right: 5px;
}


#fattymatsu {
  border: 3px solid #41a2c0;
  border-radius: 7px;
  padding: 10px;
  background: url("stuff/teal.png");
  background-repeat: repeat;
}


#polkadot {
  border: 3px solid #d6c0f9;
  border-radius: 7px;
  padding: 10px;
  background: url("stuff/white.png");
  background-repeat: repeat;
  overflow:hidden;
  position: relative;
  text-align: left;
  max-width: 510px;
}


#karamatsu {
  border: 4px solid #89dff4;
  border-radius: 5px;
  padding: 5px;
  background-color: #edfdff;
  opacity: 0.67;
  color: blue;
  margin-right: 5px;
  position: relative;
  text-align: left;
  max-width: 150px;
}


#kamimatsu {
  border: 3px solid #d6c0f9;
  border-radius: 7px;
  padding: 5px;
  background: url("stuff/square.png");
  background-repeat: repeat;
  overflow:hidden;
  position: relative;
  text-align: left;
  max-width: 200px;
}

