/* 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-image: linear-gradient(to bottom left, LavenderBlush, pink);
  font-family: times;
  font-size: 20px;
  height: 100%;
  color: pink;
  
}

p {
  font-family: times;
  font-size: 20px;
  text-align: center;
}

h1 {
  font-family: georgia;
  font-size: 30px;
  text-align: center;
}

.ascii {
  font-family: Courier;
  font-size: 8px;
  text-align: center;
}

a {
  color: white;
  text-decoration: underline;
  font-size: 18px;
}

a:hover, a:hover:visited {
  color: #ef28b6;
  font-style: italic;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
}

a:visited {
  color: LavenderBlush;
  text-decoration: underline;
  font-size: 18px;
}


.grid {
  display: grid;
  grid-template-columns: 1fr 3fr 3fr;
  grid-auto-rows: minmax(200px, auto);
  width: 90vw;
  height: 95vh;
  padding: 0;
  gap: 10px;
  background: transparent;
  margin: auto;
}

.grid-item-one {
  grid-column-start: 1;
  grid-row-start: 1;
  grid-row-end: 3;
  border-radius: 25px;
  background-color: black;
  outline: 5px dotted LightPink;
  outline-offset: -2px;
  padding-top: 0px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
}

.grid-item-two {
  grid-column-start: 2;
  grid-row-start: 1;
  grid-row-end: 2;
  border-radius: 25px;
  background-color: LavenderBlush;
  outline: 5px dotted LightPink;
  outline-offset: -2px;
  padding-top: 0px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10px;
  color: black;
}

.grid-item-three {
  grid-column-start: 2;
  grid-row-start: 2;
  grid-row-end: 3;
  border-radius: 25px;
  background-color: LavenderBlush;
  outline: 5px dotted LightPink;
  outline-offset: -2px;
  padding-top: 0px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  color: black;
}

.grid-item-four {
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 3;
  border-radius: 25px;
  outline: 5px dotted LightPink;
  outline-offset: -2px;
  padding: 10px;
  background-image: url("https://bussykweenpowertrip.neocities.org/bkptpic1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
}
  
  

/* Responsive layout - makes a one column layout instead of a two-column layout */
/* @media (max-width: 800px) {
  .grid {
    flex-direction: column;
  }
} */
  