/* -------------------------------------------------------------------------- */
/* fonts                                                                      */
/* -------------------------------------------------------------------------- */
@font-face {
  font-family: Raleway-Light;
  src: url("../fonts/raleway/Raleway-Light.ttf");
}

@font-face {
  font-family: Raleway-Regular;
  src: url("../fonts/raleway/Raleway-Regular.ttf");
}

@font-face {
  font-family: Raleway-Medium;
  src: url("../fonts/raleway/Raleway-Medium.ttf");
}

@font-face {
  font-family: Raleway-SemiBold;
  src: url("../fonts/raleway/Raleway-SemiBold.ttf");
}

@font-face {
  font-family: Raleway-Bold;
  src: url("../fonts/raleway/Raleway-Bold.ttf");
}

/* -------------------------------------------------------------------------- */
/* tags                                                                       */
/* -------------------------------------------------------------------------- */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: Raleway-Regular, sans-serif;
  font-size: 14px;
  color: #333;
}

ul,
li {
  margin: 0px;
  list-style-type: none;
}

a {
  color: #fff;
  font-family: Raleway-SemiBold;
  font-size: 12px;
  text-decoration: none;
}

/* -------------------------------------------------------------------------- */
/* main                                                                       */
/* -------------------------------------------------------------------------- */

.container {
  margin: 0 auto;
  /* max-width: 1008px; */
  max-width: 840px;
  overflow: hidden;
}

.header-container {
  padding-top: 28px;
  padding-bottom: 16px;
  margin-bottom: 48px;
  border-bottom: 1px solid #333;
}

.logo {
  /* display: inline-block; */
  height: 40px;
  vertical-align: middle;
  float: right;
}

.title {
  display: inline-block;
  font-family: Raleway-Light;
  font-size: 32px;
  height: 40px;
  vertical-align: middle;
}

.card-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  /* justify-content: space-between; */
  align-content: flex-start;
  align-items: flex-start;
}

.footer-container {
  position: absolute;
  bottom: 0px;
}

.copy {
  font-family: Raleway-Light;
  font-size: 12px;
  line-height: 40px;
}
