html, body {
  margin: 0;
  height: 100%;
}


body {
    font-family: "IBM Plex Mono", sans-serif;
    background-image: url("images/005.png");
}

.container {
  display: flex;
  align-items: center; /* vertical centering */
  justify-content: center; /* horizontal centering overall */
  gap: 40px; /* space between the two divs */
  padding: 40px;
  flex-wrap: wrap; /* allow wrapping on smaller screens */
}

/* IMAGE BOX */
.tobydog img {
  max-width: 300px;
  height: auto;;
}

/* INTRO BOX */
.intro {
  width: 400px;
  border: 3px solid #002ed2; 
  border-radius: 6px; 
  color: #ffffff; 
  text-align: center;
  font-size: large;
  background-image: url("images/bluetile.jpg");
  background-size: cover; 
  background-position: center;
  padding: 20px;
}