/* CSS is how you can add style to your website, such as colours, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link colour." */

body{
  color: black;
  font-family: times;
  background-image: url("bg.gif");
  background-repeat: repeat-x repeat-y;
  }

  .layout {
  display: flex;
  align-items: flex-start;
  max-width: 1000px;
  margin: auto;
  padding: 20px;
  gap: 20px;
}

.rants {
  display: flex;
  align-items: center;
  max-width: 1000px;
  padding: 20px;
   vertical-align: middle;
}
/* ~~~~~~ <----- spaghetti code ooooooo*/
  .tex{
  background-color: white;
  height: auto;
  border: 5px ridge #aaa;
  padding: 10px;
  box-shadow: 4px 4px 0 #888;
  width:50px;
  margin-left: auto;
  margin-right: auto;
  
}
  
  .text {
  background-color: white;
  width: 80%;
  height: auto;
  border: 5px ridge #aaa;
  padding: 10px;
  box-shadow: 4px 4px 0 #888;
  margin-bottom: 20px;
}
  .update {
  background-color: lightgrey;
  width: 80%;
  height: auto;
  border: 5px ridge #aaa;
  padding: 10px;
  box-shadow: 4px 4px 0 #888;
  margin-bottom: 20px;

}

.navbar {
  position: fixed;
  top: 50px;
  left: 20px;
  width: 160px;
  background-color: #FFF;
  border: 5px ridge #aaa;
  padding: 10px;
  font-family: comicsansms;
  box-shadow: 4px 4px 0 #888;
}

.pop {
  top: 100;
  right: 0;
  width: 200px;
  flex-shrink: 0;
}

.cnt {
  display: flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  height: 100vh;
}

footer {
    flex-shrink: 0;
  position: fixed;
  bottom: 0;
  width: 100%;
    font-size: 14px;
  }
  
  .side{
  display: flex;
  flex-direction: column;
  flex: 1;
}
  
  .below {
  padding: 20px;
  margin-top: 10px;
}
