/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
html,
body {
  font-family: 'Roboto', sans-serif;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Indie Flower', cursive;
}
h1 {
  font-size: 4rem;
}
h2 {
  font-size: 3.2rem;
  padding-bottom: 10px;
}
h4 {
  font-size: 2.5rem;
  padding-bottom: 10px;
}
p {
  line-height: 1.5;
  font-size: 1.6rem;
  padding-bottom: 10px;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 2rem;
  padding: 0.3rem;
}
@media (max-width: 500px) {
  img {
    border-radius: 2rem;
  }
}
.container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 500px) {
  .container {
    width: 80%;
  }
}
.top-box {
  display: flex;
  padding: 2rem;
  border-bottom: 2px dashed #C0C0C0;
}
@media (max-width: 500px) {
  .top-box {
    width: 478px;
    padding-bottom: 0;
  }
}
.top-box h1 {
  display: inline;
  text-align: center;
}
@media (max-width: 500px) {
  .top-box h1 {
    font-size: 6rem;
    margin-right: 4rem;
    display: block;
    padding: 0.8rem;
  }
}
.top-box nav {
  width: 800px;
  margin: auto;
}
@media (max-width: 500px) {
  .top-box nav {
    margin: auto;
    width: 100%;
    padding: 1.7rem;
  }
}
.top-box nav a {
  float: right;
  text-decoration: none;
  font-size: 1.6rem;
  padding: 1.8rem;
  color: #212529;
}
@media (max-width: 500px) {
  .top-box nav a {
    float: none;
  }
}
.footer {
  width: 100%;
  border-top: 2px dashed silver;
  background: #FFEBCD;
}
.footer p {
  text-align: center;
  color: #212529;
  font-size: 1.6rem;
  padding: 20px;
}
.home header {
  border-bottom: 2px dashed #C0C0C0;
}
.home header h1 {
  font-size: 3rem;
  padding-top: 2rem;
}
.home header p {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (max-width: 500px) {
  .home header img {
    border-radius: 0;
  }
}
.home .content-section {
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 500px) {
  .home .content-section {
    flex-direction: column;
  }
}
.home .content-section .text-content {
  width: 48%;
  padding-right: 1%;
}
@media (max-width: 500px) {
  .home .content-section .text-content {
    width: 100%;
  }
}
.home .content-section .text-content .img-content {
  width: 48%;
  padding-left: 1%;
}
@media (max-width: 500px) {
  .home .content-section .text-content .img-content {
    border-radius: 3rem;
  }
}
.home .content-section .text-content .img-content img {
  border-radius: 10px;
}
.home .inverse-content {
  padding-bottom: 30px;
  border-bottom: 2px dashed #C0C0C0;
}
.home .inverse-content .text-content {
  padding-left: 1%;
  padding-right: 0;
}
@media (max-width: 500px) {
  .home .inverse-content .text-content {
    flex-direction: column-reverse;
  }
}
.home .inverse-content .img-content {
  padding-right: 1%;
  padding-left: 0;
}
@media (max-width: 500px) {
  .home .inverse-content .img-content {
    display: none;
  }
}
.home .inverse-content .rounded {
  display: none;
}
@media (max-width: 500px) {
  .home .inverse-content .rounded {
    display: block;
  }
}
.home .content-destination {
  width: 75%;
  margin: 0 auto 30px;
}
@media (max-width: 500px) {
  .home .content-destination {
    width: 100%;
  }
}
.home .content-destination img {
  border-radius: 10px;
}
.home .content-pick {
  padding-top: 30px;
  border-top: 2px dashed #C0C0C0;
  display: flex;
  justify-content: space-between;
  /*Buttons*/
}
@media (max-width: 500px) {
  .home .content-pick {
    flex-direction: column;
    width: 400px;
    margin: auto;
  }
}
.home .content-pick .destination {
  width: 30%;
  margin-bottom: 30px;
}
@media (max-width: 500px) {
  .home .content-pick .destination {
    width: 100%;
  }
}
.home .content-pick .btn {
  padding: 1.2rem;
  border-radius: 1.6rem;
  background: teal;
  color: white;
  border: 1px solid #C0C0C0;
  width: 189px;
  text-align: center;
  font-size: 1.8rem;
}
@media (max-width: 500px) {
  .home .content-pick .btn {
    width: 370px;
  }
}
