/**
 * Styles
 *
 * @package Floweryard
 * @author Kordian Urban | PERPETUAL Digital
 */

@charset 'UTF-8';
@import url('https://fonts.googleapis.com/css?family=ABeeZee|Montserrat:400,700');
@import url('reset.css');

/*

$black: #333132;
$sand: #fefcf3;

*/

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font: 400 15px/1.5 'Montserrat', sans-serif;
  color: #333132;
  background: #fefcf3 url(../images/bg.png) left top no-repeat;
  text-align: center;
}

a {
  text-decoration: none;
  color: #333132;
  transition: .2s all;
}
a:hover {
  opacity: .7;
}

header {
  padding: 15vh 0;
}

h3 {
  display: block;
  margin: 0;
  margin-right: -10px;
  font-size: 44px;
  letter-spacing: 10px;
  padding-bottom: 4vh;
}
article {
  display: inline-block;
  padding-bottom: 18vh;
}
article div {
  display: flex;
  justify-content: space-between;
}

footer {
  padding-bottom: 30px;
}

@media ( max-width: 568px ) {
  body {
    background-size: cover;
    background-position: -100px top;
  }
  header {
    padding: 10vh 0;
  }
  h3 {
    font-size: 30px;
    letter-spacing: 4px;
  }
  article {
    padding-bottom: 10vh
  }
  article div {
    display: block;
  }
  article a {
    display: block;
  }
  article a:first-child {
    margin-bottom: 15px;
  }
}