/* --------------------------fonts------------------------- */

@font-face {
  font-family: 'Open Sans';
  src: url('fonts/OpenSans-Light.ttf');
  font-weight: 300;
}

@font-face {
  font-family: 'Open Sans';
  src: url('fonts/OpenSans-LightItalic.ttf');
  font-weight: 300;
}

@font-face {
  font-family: 'Open Sans';
  src: url('fonts/OpenSans-Regular.ttf');
  font-weight: 400;
}

@font-face {
  font-family: 'Open Sans';
  src: url('fonts/OpenSans-SemiBold.ttf');
  font-weight: 600;
}
 

/* --------------------document sections-------------------- */

body {
 font-family: 'Open Sans', sans-serif;
 font-size: 1rem;
 background-color: #141414;
 color: ghostwhite;
 margin: 0px;
}

header {
 height: 70px;
 width: 90%;
 margin-top: 0px;
 margin-bottom: 0px;
 background-color: #141414;
 color: ghostwhite;
}

nav {
 margin-left: auto;
 margin-right: auto;
}

footer {
 width: 100%;
 height: 60px; 
 background-color: #141414;
 color: ghostwhite;
}

.mainsection {
 width: 100%;
 margin: 0px auto;
}

.contentsection {
  width: 90%;
  margin: 0px auto;
 }

/* --------------------font and styles-------------------- */

.color1 { background-color: black; }
.color2 { background-color: ghostwhite; }
.color3 { background-color: grey;}

h1 {
 font-weight: 400;
 font-size: 2rem;
 margin: 0px;
 margin-top: 25px;
 padding: 0px;
}

a{
  color: lightgrey;
  text-decoration: underline;
}

.profileBox{
  width: 500px;
  text-align: left;
  vertical-align: bottom;
  padding: 10px;
  position: relative;
  margin: auto;
  margin-top: 20vh;
  display: flex;
}

.profile{
  flex: 1;
  margin-left: 20px;
  line-height: 1.2em;
}

.logo {
  background-color: ghostwhite;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border-style: solid;
  border-color: grey;
  border-width: 3px;
  margin: 0;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: background-color 0.5s;
}

.avatar {
  height: 80%;
  position: absolute;
  top: 10%;
  left: 10%;
}

/* --------------------adaptive optimizations-------------------- */

@media only screen and (min-width: 2100px){

}