* {
  box-sizing: border-box;
}

html,
body {
    margin: 0;
    height: 100%;
    background-color: #0B1A31;
}

footer {
    text-align: center;
    position: fixed;
    bottom: 5px;
    right: 10px;
}

.spacer {
    height: 100px;
}

.home {
    position: fixed;
    left: 30px;
    top: 30px;
    }
.about {
    position: fixed;
    right: 30px;
    top: 30px;
    }

.text1 {
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 100px;
    font-weight: 100;
}

.text2 {
    color: white;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 24px;
    font-weight: 100;
}

a:link {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: lightblue;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: lightblue;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}

#header {
	  padding: 10px;
    background-color: #0B1A31;
    height: 80px;
    width: 100%;
    z-index: 7;
    position: fixed;
}

#container {
  background-color: #0B1A31;
  padding: 30px;
}