@font-face {
    font-family: basic;
    src: url(impress.ttf);
}
@font-face {
    font-family: title;
    src: url(Minnie.TTF);
}
li {
    font-family: basic;
    color:red;
}
body {
    background-color: rgb(15, 57, 194);
}

.topwords {
    
    align-items: center;
    align-self: center;
    align-content: center;
    font-family: title;
    background: yellow;
    color:blue;
    padding: 5px;
    width: fit-content;
    height:fit-content
}

.flex-container {
  /* We first create a flex layout context */
  display: flex;
  
  /* Then we define the flow direction 
     and if we allow the items to wrap 
   * Remember this is the same as:
   * flex-direction: row;
   * flex-wrap: wrap;
   */
  flex-flow: row wrap;
  
  /* Then we define how is distributed the remaining space */
  justify-content: space-around;
  
  padding: 0;
  margin: 0;
  list-style: none;
}

.flex-item {
font-family: basic;
  background: tomato;
  padding: 5px;
  width: 25%;
  height: 350px;
  margin-top: 10px;
  color: white;
  font-weight: bold;
  font-size: 3em;
  text-align: center;
}

.flex-item2 {
font-family: basic;
  background: tomato;
  padding: 5px;
  width: 70%;
  height: 350px;
  margin-top: 10px;
  color: white;
  font-weight: bold;
  font-size: 3em;
  text-align: center;
}

.lil-item {
font-family: basic;
  background: rgb(255, 255, 255);
  padding: 5px;
  width: auto;
  height: auto;
  color: white;
  font-weight: bold;
  font-size: 3em;
  text-align: center;
}
