:root {
  --pale-sky: #c9e0eb;
  --dusty-denim: #7392b5;
  --deep-lilac: #8350c4;
  --midnight-violet: #402b47;
  --shadow-grey: #262423;
}

body {
  color: #c9e0eb;
  

  text-align: center;
  max-width: 1200px;
  background: #8350c4;
  background: radial-gradient(
    circle,
    rgba(131, 80, 196, 1) 32%,
    rgba(64, 43, 71, 1) 84%,
    rgba(38, 36, 35, 1) 100%
  );
  

  min-height: 100vh;
  margin: 0 auto;
}

.header {
  padding: 1px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.container {
  
  color: rgb(38, 37, 35);
  display: grid;
  font-family: Summit;
  justify-content: center;

  grid-template-areas:
    "header header"
    "menu content"
    "footer footer";

  grid-template-columns: 1fr 3fr;
  gap: 5px;
  background-color: #8350c4;
  padding: 5px;
}
.container div {
  background-color: rgb(131, 80, 198);
  padding: 5px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}


.container div.content {
  
  grid-area: content;
  min-height: 800px;
  text-align: left;
  font-size: 20px;
  line-height: 1.5;

  background-color: #262423;
  color: #c9e0eb;
}

.container div.menu {
  grid-area: menu;
  min-height: 800px;
  text-align: left;
  background-color: #262423;
  color: #c9e0eb;
  font-size: 16px;

}

.container div.profileimage{
   grid-area: menu;
  justify-items: center;



}

.container div.socials{
  grid-area: menu;
  justify-items: center;
  
  font-size: 16px;
  background-color: chartreuse;
 padding:1cm;
  
}

.container div.blinkies{
grid-area: menu;
  
  font-size: 16px;
  background-color: rgb(55, 0, 255);
 padding: 50px;
  
}