@import url('https://fonts.googleapis.com/css2?family=Cascadia+Mono&display=swap');

body{

  font-family: "Cascadia Mono", Consolas, monospace;
  background-color: #141414;
  color: #EEEEEE;

}

ul {
  font-family: "Cascadia Mono", Consolas, monospace;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #4D2200;
  color: #EEEEEE;
  font-style: bold;
  border-radius: 10px;
}

li a:hover {
  background-color: #141414;
}

li {
  display:inline-block;
}

.button {
  font-family: "Cascadia Mono", Consolas, monospace;
  background-color: #4D2200;
  border: none;
  color: #EEEEEE;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 10px;
}

.row {
  max-width: 1200px;   /* controls how wide the row can get */
  margin: 0 auto;
  display: flex;
  justify-content: center;   /* center the whole row */
  align-items: center;
  flex-wrap: wrap;           /* allow stacking on mobile */
  gap: 20px;
  padding: 20px;       /* centers text inside <p> */
  margin: 0 auto;
}

/* THE IMPORTANT PART */
.icon {
  display: block;            /* makes margin auto work */
  margin-left: auto;         /* centers the image */
  margin-right: auto;        /* centers the image */
  width: 70%;                /* larger images */
  max-width: 600px;
  height: auto;
  flex: 1;
}

/* Text block */
.text {
  flex: 1;
  min-width: 280px;
  font-size: 18px;
  justify-content: center;
}

/* Mobile layout */
@media (max-width: 700px) {
  .row {
    flex-direction: column;  /* stack vertically */
  }

  .icon {
    width: 100%;
    max-width: 500px;
  }
}

hr {
  border: none;
  height: 2px;
  background-color: #404040;
}