html {
	scroll-behavior: smooth;
}

body {
  padding: 0px;
  margin: 0px;
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
}

a {
  cursor: pointer;
}

header {
  background-image: url("dinosaur_background_header.jpg");
  background-color: grey;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  color: white;
}

header hgroup {
  display: flex;
  flex-direction: row;
  align-items: center;
}

header .logo {
  width: 70px;
  height: 70px;
  padding: 10px 15px 10px 50px;
}

header h1 {
  margin: 0px;
  padding: 10px 0px;
  font-weight: 300;
  font-size: 3em;
  color: white;
}

header a {
  text-decoration: none;
  color: white;
}

header h1 a:hover {
  color: white;
}

header nav {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  color: white;
  font-size: 1.2em;
  font-weight: 100;
  align-items: center;
  padding-right: 50px;
}

nav a {
  padding: 0px 10px;
  margin-bottom: 10px;
  color: white;
}

header a:hover {
  color: #ccccdd;
}

.top-part {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-image: url("dinosaur_background_sm.jpg");
  background-color: grey;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.top-part header {
  background-image: none;
  background-color: transparent;
}

.top-part .main-text-holder {
  height: 100%;
  display: flex;
  align-items: end;
  max-width: 80%;
  font-weight: 100;
  color: white;
  font-size: 2em;
  padding: 0px 50px 100px 50px;
}

@media only screen and (max-width : 900px) {
  .top-part nav {
    font-weight: 300;
  }

  .top-part .main-text-holder {
    max-width: 100%;
    font-size: 1.5em;
    font-weight: 300;
    padding: 0px 20px 50px 30px;
  }
}

section {
  font-family: 'Poppins', sans-serif;
  color: black;
  padding: 10px 50px;
}

section h1 {
  font-weight: 300;
  font-size: 3em;
}

section h2 {
  font-weight: 300;
  font-size: 2em;
}

section p {
  font-weight: 100;
  font-size: 1.5em;
  white-space: pre-line;
}

section b {
  font-weight: 300;
}

form {
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  width: 100%;
  min-width: 300px;
  max-width: 700px;
}

label {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  padding: 30px 0px 10px 0px;
  font-size: 1.5em;
}

input, textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 1.0em;
  font-weight: 300;
  padding: 5px 5px 5px 10px;
}

textarea {
  margin-bottom: 30px;
  height: 200px;
}

form button {
  font-family: 'Poppins', sans-serif;
  font-size: 1.0em;
  font-weight: 300;
  padding: 5px 5px 5px 10px;
  margin-top: 30px;
  width: 100%;
  max-width: 200px;
  align-self: center;
  cursor: pointer;
}

form button div {
  float: left;
  width: 0px;
  height: 0px;
}

form button img {
  width: 25px;
  height: 25px;
}

.contact-us-response {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5em;
  font-weight: 300;
  padding: 30px 0px 10px 0px;
}

.contact-us-response div {
  padding: 10px 0px;
}

.contact-us-response label {
  font-size: 1em;
  font-weight: 500;
}

.contact-us-response .message {
  border: 1px solid black;
  padding: 10px;
  white-space: pre-line;
}

.last-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 300;
  color: white;
  padding: 30px;
  background-color: grey;
  background-image: url("dinosaur_background_sm.jpg");
  background-color: grey;
  background-size: cover;
  background-repeat: no-repeat;
}

footer a {
  color: white;
}

footer a:hover {
  color: #ccccdd;
}

footer .copyright {
  margin-top: 20px;
}
