/* variables for font & link-decoration */
/* mixin for certain links that have white font color & no decoration */
/* mixin for background images */
/* Navbar style */
.navbar {
  overflow: hidden;
  background-color: #333;
  position: relative;
}

.navbar a {
  color: white;
  text-decoration: none;
  padding: 14px 16px;
  font-size: 17px;
  display: block;
}

.navbar a:hover {
  font-weight: bold;
  background-color: rgba(179, 88, 88, 0.178);
  border-radius: 15px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

/* content styles */
body {
  width: 100%;
  background-image: url(../img/sunrise.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.page-container {
  position: relative;
  min-height: 100vh;
}

.content-wrap {
  padding-bottom: 60px;
}

h1 {
  padding-bottom: 10vh;
  -webkit-text-decoration: underline coral;
          text-decoration: underline coral;
}

h1, h2 {
  color: white;
  text-align: center;
  margin: 15px;
}

span {
  -webkit-text-decoration: line-through black double;
          text-decoration: line-through black double;
}

h4 {
  color: white;
  margin-left: 2vw;
}

/* content styles */
.content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
      grid-template-columns: auto auto;
  margin-left: 2vw;
}

.card {
  background-color: rgba(201, 91, 245, 0.753);
  border-radius: 20px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.card a {
  color: white;
  text-decoration: none;
}

.accordion {
  width: 50vw;
}

.accordion a {
  text-decoration: none;
  color: black;
}

.accordion a:hover {
  font-weight: bold;
}

/* footer styles */
footer {
  padding: 10px;
  background-color: #333;
  min-height: 60px;
  width: 100%;
  position: absolute;
  bottom: 0px;
}

.photo {
  margin-left: 94vw;
  background-image: url("../img/pineapple.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: auto;
  min-height: 45px;
  text-indent: -9999px;
  display: block;
}
/*# sourceMappingURL=build_styles.css.map */