* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@import url(https://fonts.googleapis.com/css?family=Signika+Negative:400,700);

html, body {
  height:100%;
  font-family: 'Signika Negative', sans-serif;
  font-size: 25px;
}

html {
  background: url('./img/sowell.jpeg') fixed;
  background-size: 100%;
}

h1 {
    color: #ececec;
    margin-top: 30px;
    margin-bottom: 30px;
}

div {
  overflow: hidden;
}

a {
  color: #322bff;
  text-decoration: underline;
  transition: 500ms;
}
a:hover {
  color: #26a1ff;
}

p {
  padding: 0 5%;
  color:#8c6948;
}

img {
  box-shadow: 0px 0px 4px #000;
}

#header {
  background: rgba(255, 255, 255, .5);
  padding: 1%;
  overflow: hidden;
  height: 55px;
}
#header img {
  float: left;
  box-shadow: none;
  position: relative;
  bottom: 16px;
}
#header ul {
  list-style: none;
  display: flex;
  justify-content: end;
  align-items: center;
}
#header ul li {
  margin-left: 10px;
  font-size: 20px;

}

#header ul li a {
    text-decoration: none;
    color: #010105;
}

#header ul li a:hover {
    color: #8c6948;
    text-decoration: underline;
}






.fullscreen {
  height: 95%;
  position: relative;
}
.fullscreen .header {
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
  color: #fff;
  text-shadow: 0px 0px 2px #000;
}

.white {
  background: #eeeeec;
  padding: 0 5%;
}
.nobg {
  background: none;
  padding: 0 5%;
  color: #fff;
  text-shadow: 0px 0px 4px #000;
}
.semitrans {
  background: rgba(255, 255, 255, .5);
  padding: 0 5%;
  width: 100%;
  height: 30rem;
}

.dark {
  color: #eeeeec;
  background: #010105;
  padding: 0 5%;
  display: flex;
  justify-content: end;
  opacity: .7;
}

.nopadding {
  padding: 0;
}

.floatleft {
  float: left;
  margin: 2%;
}
.floatright {
  float: right;
  margin: 2%;
  width: 600px;
  height: 400px;
}

.more {
  text-align: center;
  font-size: 17px;
}
.more a {
  color: #aaa;
  text-decoration: none;
  cursor: pointer;
}
.more a:hover {
  color: #777;
}



.page_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

form {
    display: flex;
    flex-direction: column;
    width: 500px;
    margin-top: 70px;
    font-size: 1.5rem;
}
form input {
    font-size: 1.3rem;
}

.submit-button {
    width: 4.5rem;
    height: 1.5rem;
    position: relative;
    left: 200px;
    margin-top: 10px;
    background-color:transparent;
    color: red;
    border: 2px solid red;
}


