#website {
    background-color:black;
}
body {
    background-color: black ;
    color: white;
}

.title {
    text-align: center
}

.topIndent {
    margin-top: 25%;
}


.container {  display: grid;
    grid-template-columns: 0.9fr 1.1fr 1fr;
    grid-template-rows: 0.4fr 1.9fr 0.7fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
      "title title title"
      "links text text"
      "footer footer footer";
  }
  
  .title { grid-area: title; }
  
  .footer { grid-area: footer; }
  
  .links { grid-area: links;
        border: white;
        border-style: solid; }
  
  .text { grid-area: text; }

  .indent { margin-left: 5%;}
  