/*hex code color : purple E8CCFF, red CC0C36*/
  
  body {
    background-color: #FFC7E9;
    overflow-y: auto;
  }
  
  .container {
    font-family: "determination.ttf";
    color: white;
    display: grid;
    gap: 5px;
  grid-template-areas: 
     "container";
  grid-template-columns: auto;
    text-align: center;
    justify-content: center;
    align-items: center;
    background-color: black;
    position: relative; 
  width: 800px;
  max-width: 800px;
  height: 300px;
  border: 5px solid white;
  margin: 20px;
  }