/** Default Values **/

@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 Build **/

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:4.8em;
  height: 4.8em;
  margin: -1;
  
}

nav ul {
  position:relative;
  display: inline-block;
  float: right;
  margin-right: 10px;
  top: 20px;
}

nav li {
  display: inline-block;
  padding-left: .25em;
  padding-right: .25em;
  padding-top: 1em;
  padding-bottom: 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;
}

nav li:hover {
  background-color: white;
}

#home {
  background-color: red;
}

/** Main Body **/

main {
  width: 100%;
}

main p {
  display: block;
  font-size: 1.8em;
  color: black;
  text-shadow: 0.5px 0.5px 0 white, -0.5px -0.5px 0 white, 0.5px -0.5px 0 white, -0.5px 0.5px 0 white;
  line-height: 1.5;
  text-align: center;
  font-family: 'BulkyFont', 'Times New Roman';
  background-color: rgba(102, 153, 204, 75%);
  padding: 0.5em;
}

.welcome {
  width: 88%;
  position: relative;
  display: block;
  border: 2px dot hsl(50, 100%, 45%);
  margin: 0 auto;
  top: 10em;
}

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: 4.5em;
  text-align: center;
  font-family: 'BulkyFont', 'Times New Roman';
  font-weight: 500;
}


.about {
  position: relative;
  top: 15em;
  width: 70%;
  display: block;
  margin: 0 auto;
}

.unconst_container {
  position: relative;
  top: 20em;
  display: flex;
  justify-content: center;
  align-items: center;
}

main img {
  width: 60%;
  max-width: 1800px;
  min-width: 280px;
}

.wrapup {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 60%;
  top: 30em;
  padding-bottom: 10em;
}

/** 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;
}