@charset "utf-8";

/* CSS Document */

* {
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: "Century Gothic", Arial, Helvetica, sans-serif;
  height: 100%;
  min-height: 100%;
  font-size: 14px;
}

.bg {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url(../media/mountains.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -100;
}

h1 {
  text-align: center;
  font-size: 35px;
  font-weight: bold;
  text-decoration: none;
}

h2 {
  font-size: 25px;
  font-weight: normal;
  text-decoration: none;
}

h3 {
  font-size: 20px;
  font-weight: normal;
}

h4 {
  font-size: 15px;
  font-weight: normal;
  text-decoration: underline;
  cursor: pointer;
}

h4:hover {
  color: #333333;
}

h5 {
  font-size: 15px;
  font-weight: normal;
  text-decoration: none;
  margin: 10px 0;
}

.hidden {
  display: none;
}

.center {
  text-align: center;
}

.hr1 {
  border: none;
  height: 1px;
  width: 100%;
  background: url(../media/hr1.png) no-repeat center center;
  margin-top: 10px;
  margin-bottom: 10px;
}


/* cards */

.card {
  margin: 40px 0;
  padding: 25px;
  background-color: rgba(244, 244, 244, 0.9);
  box-shadow: 0 14px 30px 0 rgba(0, 0, 0, 0.3), 0 9px 9px 0 rgba(0, 0, 0, 0.15);
}