/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
.topimage {
  height:300px;
}

.green {
  display:block;
  position: relative;
  height:301px;
  width:490px;
  bottom:45%;
  right:2%;
}

.logo {
  display:block;
  width: 176px;
  height: 176px;
  position: relative;
  left:41.5%;
  bottom:140%;
}

.smokestack {
  display:block;
  width: 300px;
  height: 400px;
  position: relative;
  left:75%;
  bottom:33%;
}

.gears {
  display:block;
  width: 200px;
  height: 200px;
  max-width: 100%;
  position: relative;
  left:90%;
  bottom: 130%;
}

.project1 {
  display:block;
  width: 192px;
  height: 192px;
  max-width:100%;
  position:relative;
  left:4%;
  top:1%;
}

.project2 {
  display:block;
  width: 208px;
  height: 208px;
  max-width:100%;
  position:relative;
  right:0%;
  top:3%;
}

.container {
  display: grid;
  
  grid-template:
    "avatar avatar"
    "sidebar main"
    "footer footer"
    / 208px 1fr;
}
aside { 
  grid-area: sidebar;
  height: 624px;
  background: url(https://goopich.neocities.org/sidepanel-export.png);
}
main { 
  grid-area: main;
  border: 5px solid red;
}
footer { 
  grid-area: footer;
  border: 5px solid blue;
}

avatar {
  grid-area: avatar;
  height:208px;
  background: url("https://goopich.neocities.org/layouttest.png");
}


body {
  background-color: lightblue;
  color: black;
  font-family: Verdana;
  width: 1024px;
  margin-left: auto;
  margin-right: auto;
}