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

.title {
    text-align: center;
}

.earth {
    width: 500px;
}

.tt {
    display: block;
    width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

  .image2 { grid-area: image2;}
 
  