/* 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: white;
  font-family: Garamond;
}
.start {
      border: grey solid 10px;
      max-width: 100%;
      height: 100px;
      margin:0;
       box-sizing: border-box
}
/* 2. Force the image to fill the box proportions */
.start img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This is the magic cuzo */
}
.text-container {
    top: 1.75%;
    position: absolute;
    height: 100%;
    width:100%
}
.next1 {
  border: grey dotted 5px;
  max-width: 50px;
  max-height: 50px;
  margin: 0;
  position: absolute;
}
.next1 img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This is the magic cuzo */
}