/*overall visual*/


body {background-color: lightblue;
  font-family: Helvetica;
  flex-direction: column; 
  min-height: 100vh;
  min-width: 100vh;
  padding: 0;
  overflow-x: hidden;
  flex-wrap: wrap;
  
}


/* unvisited link */
a:link {
  color: yellow;
}

/* visited link */
a:visited {
  color: orange;
}

/* mouse over link */
a:hover {
  color: hotpink;
}

/* selected link */
a:active {
  color: blue;
} 

.header {background-color: transparent;
width: 100%;
padding: 0px;
margin-left: 400px;
position: fixed;
flex-shrink: 1;
top: 0px;

}

.althead {background-color: transparent;
width: 100%;
padding: 0px;
margin-left: 400px;
flex-shrink: 1;
position: fixed;
align-items: baseline;
top:0px;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {background-color: transparent;
width: 100%;
    padding: 2px;
    text-align: center;
    height: 800px;
    margin-top: 300px;
    margin-left: 200px;
  
    flex-grow: 1;
    padding-bottom: 100px;
}

.aside {
background-image: url("/Asidebg.png");
background-size: cover;
background-position: center;
width: 200px; 
padding: 0px;
margin: 0px;
height: 100%;
min-height: 1000px;
overflow: scroll;;
color: #48793c;
position: fixed;
top: 5px;
font-size: 15px;
text-align: center;
align-items: center;
bottom: 0;
}

.footer {background-color: transparent;
width: 100%;
height: 100px;
bottom: 0;
margin-left: 200px;
text-align: justify;
flex-shrink: 0;
position: fixed;
}


/* image position*/

.column {
  float: left;
  width: 33.33%;
  padding: 0px;
  bottom: 50px;
}

.center {
  display: inline-flex;
  margin-left: 200;
  width: 100%;
  max-width: 1000px;
  height: auto;
  align-items: center;
  position: static;
  justify-content: center;
}

.hotdog {
  display: block;
  margin-left: 55px;
  margin-right: 0px;
  width: 100px;
  height: 100px;
  align-items: center;
}
