
.container {
  /* Grid display */
  display: grid;
  grid-template-areas:
    "menu menu"
    "logs logs" ;
  gap: 10px;
  padding: 10px;
  width: 500px;
}

.container > div {
  border: 5px ;
  background-color: #43bae977;
  border-radius: 10px;
  border-color: #0973b1;
  border-style: solid;
}

#logs {
 height: fit-content;
 width: 500px;   
}

body {
  background-image: url(https://usagif.com/wp-content/uploads/gifs/water-66.gif) ;
  background-repeat: no-repeat;
  background-size: cover; 
  background-position: center; 
}

/* MAKE IT OCEAN THEMED !!! */