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

.title {
    text-align: center;
}

.settings {
    text-align: center;
}

.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 settings ."
      "footer footer footer";
  }
  
  .title { grid-area: title; }
  
  .footer { grid-area: footer; }
  
  .links { grid-area: links; border: white;
        border-style: solid;}

  .settings { grid-area: settings; }