@font-face {
    font-family: 'gyst-regular';
    src: url('../fonts/gyst-regular.woff2') format('woff2');
}

body {
  font-family: 'gyst-regular', sans-serif;
  margin: 0;
  display: flex;
  flex-direction: column; 
  min-height: 100vh; 
  background-color: rgb(245, 245, 245);
}

.main-content {
  flex: 1;
  display: flex;
  flex-wrap: wrap;           
  justify-content: center;
  align-items: flex-start;  
  align-content: flex-start;
  padding: 20px;
  gap: 15px;                 
}
  
#temporary-placeholder {
    color: blue;
    width: 100%;
    text-align: center;
}