/**
 * Header:
 **/

.header {
  display: block;
  margin: 0 auto;
}

.header__title {
  display: block;
  font-size: var(--font-size-header);
  text-align: center;
  margin-bottom: 20px;
}

.header__link,
.header__link:hover {
  color: var(--color-font);
  text-decoration: none;
}

/**
 * Social:
 **/

.social__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social__link:not(:first-child) {
  margin-left: 25px;
}

.social__link {
  color: var(--color-font);
  cursor: pointer;
}

/**
 * Link list:
 **/

.link-list {
  list-style: none;
  text-align: center;
  max-width: 240px;
  margin-top: 25px;
  padding: 0;
}

.link-list:focus {
  outline: none;
}

@media (min-width: 640px) {
  .link-list {
    max-width: none;
  }
}

.link-list__link {
  padding: 15px;
  background-color: var(--color-primary);
  max-width: 700px;
  color: #fff;
  text-decoration: none;
  transition: all var(--transition-time) var(--transition-curve);
}

.link-list__link:hover {
  background-color: var(--color-secondary);
  text-decoration: none;
}

/**
 * Footer:
 **/

footer {
  display: block;
  width: 100%;
  margin-top: 50px;
}

.footer__divider {
  display: block;
  margin: 0 auto;
  max-width: 98%;
}

.footer__link-list {
  display: flex;
  justify-content:space-around;
  list-style: none;
  padding: 0;
}

.footer__link {
  color: var(--color-font);
}

.footer__link:not(:hover) {
  text-decoration: none;
}


/**
 * content frame:
 **/
.frame {
  max-width: 720px;
  border: 1px solid black;
  padding: 25px 15px;
  margin-top: 25px;
}

.container {
  display: flex; 
  justify-content: space-between; 
  flex-direction: column; 
  height: 100%; 
  width: 100%; 
  padding: 0 15px;
}

.title, .sub-title {
  width: 100%;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 25px;
  font-size: 45px;
}

.sub-title {
  font-size: 35px;
}

.crossed-through {
  text-decoration: line-through;
}

.sub-title--detail {
  font-size: 20px;
}

.cover {
  width: 90%;
  height: auto;
  max-width: 400px;
  box-shadow: 1px 1px 6px 1px #ccc;
}

.calendar {
  font-size: 25px;
}

.cta {
  font-size: var(--font-size-sub-heading);
}


/**
 * lists
 **/

.list-item {
  margin-top: 10px;
}