/* https://coolors.co/ffd3c4-faa275-ce6a85-985277-5c374c */
/* Fonts */

h1 {
  font-family: 'Dancing Script', cursive;
  font-size: 42px;
  text-align: center;
  color: #666;
  line-height: 1.2;
}

h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 36px;
  text-align: center;
  color: #333;
  line-height: 1.2;
}

p {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: #000;
  line-height: 1.2;
}

/* nav */

/* Add a black background color to the top navigation */
.topnav {
  background-color: #fff;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  font-family: 'Raleway', sans-serif;
  float: right;
  color: #333;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #F9905C;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #FAA275;
  color: #fff;
}

/* Hero Image */

body, html {
    height: 100%;
    margin: auto;
}

/* The hero image */
.hero-image {
  /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
  background-image: url("photographer.jpg");
  background-color: #FAA275;

  /* Set a specific height */
  height: 50%;

  /* Position and center the image to scale nicely on all screens */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* Place text in the middle of the image */
.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

* {
  box-sizing: border-box;
}

.container {
  padding: 64px;
}

/* Container for content */

.container_1 {
  background-color: #CE6A85;
}

.container_2 {
  background-color: #985277;
}

/* Clear floats */
.row:after {
  content: "";
  display: table;
  clear: both
}

/* 2/3 column */
.column-66 {
  float: left;
  width: 66.66666%;
  padding: 20px;
}

/* 1/3 column */
.column-33 {
  float: left;
  width: 33.33333%;
  padding: 20px;
}

/* Add responsiveness - make the columns appear on top of each other instead of next to each other on small screens */
@media screen and (max-width: 1000px) {
  .column-66,
  .column-33 {
    width: 100%;
    text-align: center;
  }
}

/* Footer */

.footer {
  position: fixed; 
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  color: #000;
  text-align: center;
}

.social_media {
  width: 50px;
  height: 50px;
  bottom: 20px;
}