/* line 4, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
html {
  font-family: "Arimo", sans-serif;
  margin: 0;
  padding: 0;
  background: #1a1a1a; }

/* line 12, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
body {
  margin: 0;
  padding: 0; }

/* Applies white text to landing page only. */
/* line 19, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
.landing-text {
  color: #fff; }

/* line 23, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
h1 {
  font-family: "Slabo 13px", serif;
  font-size: 5rem;
  margin-top: 0;
  margin-bottom: .1em;
  padding-top: 15px; }

/* line 37, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
p {
  font-size: 1.5rem; }

/* line 43, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
a:link, a:visited, a:active {
  color: #378aeb;
  text-decoration: none;
  /* Setting underline for links... */
  border-bottom: 1px solid transparent;
  transition: all ease-in-out 0.4s; }

/* Shows underline when hovered. */
/* line 52, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
a:hover {
  border-bottom-color: #378aeb; }

/* line 56, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
nav {
  display: block;
  background: #fff;
  /* Adding shadows at the bottom of the element. */
  box-shadow: 0px 3px 14px rgba(0, 0, 0, 0.4); }

/* line 65, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
nav > ul {
  display: block;
  margin: 0;
  padding: 0;
  list-style-type: none; }

/* line 72, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
nav > ul > li > a {
  color: #1a1a1a !important;
  font-size: 1.1rem; }
  /* line 75, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
  nav > ul > li > a:hover {
    color: #378aeb !important; }

/* line 81, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
nav > ul > li {
  display: inline-block;
  vertical-align: middle;
  width: 8em;
  text-align: center; }

/* Cannot target first-of-type li since all elements are first inside anchor tags. */
/* line 89, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
nav > ul > li:first-of-type {
  padding: 0px;
  width: auto; }

/* line 94, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
nav > ul img {
  width: 7em;
  padding: 0;
  margin: 0; }

/* line 101, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
div.wrapper {
  width: 100% !important;
  /* Set's the height of the element to 100% of the viewport. */
  height: 100vh;
  display: block;
  background: #fff; }

/* line 108, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
div.landing {
  /*
        * The background image is sourced from http://fullhdwp.com/images/wallpapers/Lisbon-city-wallpaper.jpg
        */
  /* This property has a transparent gradient applied and holds the image background. */
  background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(images/background.jpg);
  background-repeat: no-repeat;
  background-size: cover; }

/* line 123, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
div.sub-wrapper {
  margin: 0;
  padding: 0 20px;
  overflow: hidden; }

/* Resets margins */
/* line 130, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
footer, footer p, footer h2, footer div {
  margin: 0 0; }

/* Defines general layout properties. */
/* line 135, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
footer {
  /* Margin keeps footer title visible for the user. */
  margin-top: -47px;
  height: 170px;
  background: #1c1c1c;
  text-align: right; }

/* line 143, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
footer h2 {
  text-align: center;
  padding: 10px 10px; }

/* This div pushes html5 badge and copyright information to the end of the footer. */
/* line 149, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
footer div {
  height: 70px; }

/* Allow's paragraphs to be side by side, on the same line. */
/* line 154, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
footer p {
  display: inline;
  font-size: 1.1rem;
  padding: 0 15px; }

/* Adjusting html5 badge image size... */
/* line 161, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
footer img {
  width: 100px;
  height: auto; }

/* Stops html5 badge from showing underline. */
/* line 167, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
footer a#badge:hover {
  border: none; }

/* line 171, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
div.references {
  height: auto; }

/* line 175, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
footer.references {
  height: auto;
  margin-top: 0;
  display: block; }

/* line 181, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
footer.references div {
  width: 20px; }

/* Gallery styles */
/* line 186, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
.gallery > div {
  margin: 0;
  margin-right: 5px;
  padding: 12px 5px 5px 5px;
  display: inline-block;
  width: 250px;
  border: solid 1px #333;
  border-radius: 3px; }

/* line 197, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
.gallery > div > img:hover {
  border-color: #378aeb; }

/* line 201, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
.gallery > div:last-of-type {
  margin-right: 0; }

/* line 205, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
.gallery img {
  display: block;
  width: 200px;
  height: 150px;
  margin: 0 auto;
  border-radius: 3px; }

/* line 213, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
.gallery, figure, figcaption {
  margin: 0;
  padding: 0;
  text-align: center; }

/* COMMENTS PAGE */
/* Resets! */
/* line 222, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
form, input, label, textarea, legend, fieldset {
  margin: 0;
  padding: 0;
  border: none; }

/* line 228, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
fieldset > ul {
  list-style-type: none;
  margin: 0;
  padding: 0; }

/* Container postition. */
/* line 235, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
form {
  padding: 20px; }

/* line 239, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
form > div > label {
  display: block; }

/* Adding text formatting. */
/* line 244, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
label, fieldset {
  font-family: "Slabo 13px", serif;
  font-size: 1.9rem;
  font-weight: bold; }

/* line 252, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
fieldset > fieldset label {
  font-family: "Arimo", sans-serif !important;
  font-size: 1.3rem;
  font-weight: normal; }

/* line 260, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
form > div > fieldset > legend {
  color: #bbb;
  font-size: 2rem; }

/* Input text boxes */
/* line 266, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
input, textarea {
  min-height: 30px;
  border: solid 1px #333;
  font-family: "Arimo", sans-serif;
  font-size: 1.3rem; }

/* line 275, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
textarea {
  width: 100%;
  min-height: 100px; }

/* line 280, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
input:focus, textarea:focus {
  border: solid 2px #378aeb; }

/* Adding much needed margins to form elements. */
/* line 289, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
div.form-first-row input,
div.form-first-row textarea,
div.form-first-row legend,
div.form-first-row fieldset,
div.form-second-row {
  margin-bottom: .5em; }

/* Submit button styling rules. */
/* line 294, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
div.form-third-row {
  width: 50%; }

/* line 298, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
div.form-third-row > input {
  display: block;
  margin: 0 auto;
  margin-top: .8em;
  font-family: "Slabo 13px", serif;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  width: 100%;
  padding: 10px 0;
  cursor: pointer;
  background: #1a1a1a;
  border: none;
  border-radius: 2px;
  transition: all 0.4s ease-in;
  text-align: center; }

/* line 318, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
div.form-third-row > input:hover {
  background: #378aeb; }

/* Preferences ... */
/* line 323, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
div.form-second-row > fieldset > fieldset:nth-of-type(3) li {
  display: block; }

/* Form columns and rows */
/* line 333, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
div.form-first-row, div.form-second-row, div.form-third-row {
  width: 50%;
  display: block;
  margin: 0 auto; }

/* Fixing gallery display. */
@media (max-width: 1133px) {
  /* line 341, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
  div.wrapper {
    min-height: 500px;
    height: auto !important; }
  /* line 346, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
  .gallery > div {
    margin-bottom: 10px; } }

/* Fixes content overlapping and optimizes display for a range of desktop screen resolutions. */
@media (max-width: 924px) {
  /* line 353, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
  nav {
    padding-bottom: 10px; }
  /* line 355, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
  h1 {
    font-size: 3rem; }
  /* line 361, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
  div.wrapper {
    height: auto; }
  /* line 365, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
  footer div {
    height: 1em; }
  /* line 369, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
  footer p {
    display: block;
    padding: 20px 0; }
  /* line 374, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
  footer h2 {
    text-align: center;
    padding: 0px;
    margin: 0; }
  /* line 380, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
  footer {
    text-align: center;
    height: auto;
    margin-top: 0px !important; }
  /* Comments responsiveness */
  /* line 387, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
  form {
    padding: 10 0px; }
  /* line 391, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
  div.form-first-row, div.form-second-row, div.form-third-row {
    width: 100%;
    display: block;
    margin: auto auto;
    padding: 0 5px; }
  /* line 398, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
  div.form-third-row > input {
    width: 100%; } }

/* Optimizes content display for a range of mobile devices and smaller screen resolutions. */
@media (max-width: 450px) {
  /* line 407, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
  nav > ul > li {
    display: block;
    vertical-align: middle;
    width: auto;
    text-align: center; }
  /* line 414, C:/Users/Cristiano/Dropbox/UWE/Year 1/Introduction to Web Platforms/Holiday Destination/styles.scss */
  nav > ul > li > a {
    font-size: 1.3rem; } }

/*# sourceMappingURL=styles.css.map */