/* Sets the font and background color */
body {
  font-family: 'Lato', sans-serif;
  background-color: black;
  margin: 0;
  padding: 0;
  height: 100vh;
  color: white;
    -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* Navigation Bar */
nav {
  position: absolute;
  width: 100%;
  z-index: 1;
}
nav a, nav a:hover, nav a:active, nav a:visited, nav a:link {
  text-decoration: none;
  color: white;
}
/* Adds line on hover */
nav a:hover {
  border-bottom: 3px solid white
}
/* Adds line to current page */
ul li:nth-child(6) a {
  border-bottom: 3px solid white;
  pointer-events: none;
    cursor: default;
}
/* Sets font size */
.navigation {
  list-style-type: none;
  font-weight: 500;
  font-size: 18px;
  float: right;
  margin-top: 30px;
}
nav li {
  display: inline-block;
  padding-right: 40px;
}
/* Left side images */
.image-size {
  display: inline;
  position: absolute;
  margin-top: 0;
  height: 100%;
  width: 50%;
  font-size: 0;
}
.image-size img {
  font-size: 0;
  width: 100%;
  height: 50%;
}
.image-size img:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.image-size p {
  position: absolute;
  margin: 10px 0 0 10px;
  padding: 0;
  font-size: 16px;
}
/* Contact text */
.email, .email:hover, .email:active, .email:visited, .email:link {
  color: #ED1B2F;
  font-size: 200%;
  text-decoration: none;
  text-align: center;
}
.email:hover {
  color: #F43547;
}
hr {
  width: 25%;
  margin-top: -20px;
}
.contact-text p:nth-child(1) {
  position: absolute;
  text-align: left;
  margin-left: 6.25%;
}
.contacts-text {
  display: flex;
  flex-direction: column;
  float: right;
  margin-right: 12%;
}
.contacts-text p:nth-child(1), .contacts-text p:nth-child(2){
  float: right;
  text-align: right;
  width: 300px;
  margin-right: 12.5%;
}
/* Contact form */
#form-section {
  width: 50%;
  height: 100%;
  float: right;
  text-align: center;
  margin-top: 50px;
}
#Field1, #Field2 {
  color: white;
  background-color: black;
  font-style: italic;
  font-family: 'Lato', sans-serif;
}
#Field1 {
  height: 25px;
  margin-bottom: 10px;
}
#Field2 {
  height: 250px;
}
#form input, textarea {
  width: 75%;
}
/* Send button */
#form button
{
  background-color: #ED1B2F;
  border: none;
  padding: 10px 20px;
  color: white;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    cursor:pointer;
    font-family: 'Lato', sans-serif;
    margin-top: 10px;
}
#form button:hover
{
  background-color: #F43547;
}