/** defalts **/
@font-face {
    font-family: "BulkyFont";
    src: url("./fonts/BlackOpsOne-Regular.ttf") format("truetype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'BulkyFont', 'Times New Roman', Monospace;
}

/** background **/

body {
  background-image: url('./uncnstbg.gif');
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
}

/** Navigation Bar **/

.navframe {
  background-color: rgba(102, 153, 204, 75%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  z-index: 3;
}

#logo {
  position: relative;
  display: inline-block;
  z-index: 3;
  width:5em;
  height: 5em;
  margin: -1;
  
}

nav ul {
  position:relative;
  float: right;
  margin-right: 85px;
  top: 20px;
}

nav li {
  display: inline-block;
  padding: 1em;
  background-color: hsl(50, 100%, 45%);
  border: 2px solid black;
}

nav a {
  color: black;
  text-transform: capitalize;
  text-decoration: none;
  font-size: 1.1em;
}


#myprojects {
  background-color: red;
}

/** body code **/ 

main {
  width: 100%;
}

main p {
  display: block;
  font-size: 20px;
  color: black;
  text-shadow: 0.5px 0.5px 0 hsl(50, 100%, 45%), -0.5px -0.5px 0 hsl(50, 100%, 45%), 0.5px -0.5px 0 hsl(50, 100%, 45%), -0.5px 0.5px 0 hsl(50, 100%, 45%);
  padding-top: 10px;
  font-weight: bold;
  text-align: center;
}

.header {
  display: block;
  position: relative;
  top: 200px;
}

main h1 {
  position: relative;
  display: block;
  color: hsl(50, 100%, 45%);
  text-shadow: 1px 1px 0 black, -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black;
  font-size: 35px;
  text-align: center;
}

/** footer **/

.contact {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: rgba(102, 153, 204, 75%);
}

.contact p {
  position: relative;
  display: block;
  padding: 10px;
  float: right;
  margin-right: 85px;
}