body {
text-align:center;
font-family:monospace;
background-image: url('https://i.redd.it/wallpapers-from-hc-season-10-v0-tnp4lfpph0wf1.png?width=5760&format=png&auto=webp&s=8395b188d5d24400cb5114358b6d2290664e4a71');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}


.evenbiggercontainer {  /*orders each card centrally */
  display:flex;
  flex-direction:column;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.container {    /*creates a card which orders things to the left*/
    display:flex;
    justify-content: flex-start;
    width: 800px;
    height: 500px;
    border-radius: 20px;
    background-color: rgba(255,255,255,0.7);

}

.container div {   /*creates rules for the textbox, no flex present here */
    overflow-y: auto;
    min-height: 0;
    word-wrap: break-word;
}


/* Add a black background color to the top navigation */
.topnav {
  background-color: #194f27;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #000000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav p {
    margin: 10px;
    color: white;
    background-color: #36c457;
}


/* Change the color of links on hover */
.topnav a:hover {
  background-color: #13301a;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #6178bb;
  color: rgb(0, 0, 0);
}

.blinkiecontainer {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  align-content: start;
}