html {
  box-sizing: border-box;
  font-size: 100%;
}

*,
:after,
:before {
  box-sizing: inherit;
}

body {
  background-image: url("/images/pexels-jonas-svidras-785418.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  max-width: 100%;
  min-height: 100vh;
  height: auto;
  letter-spacing: 0.1em;
}

.logo {
  width: 100px;
}

h2 {
  color: #024873;
}

.links__item {
  display: block;
  max-width: 550px;
  margin: 0 auto 15px;
  margin-bottom: 5px;
  padding: 15px 20px;
  font-size: 0.95rem;
  line-height: 1.5;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  color: black;
}

.links__item .links__item--alumni:hover {
  background-color: #fff;
}

.links__item .links__item--upcoming:hover {
  background-color: #fff;
}

.links__item .links__item--promo:hover {
  background-color: #fff;
}

.links__item .links__item--past-event:hover {
  background-color: #fff;
}

.links__item .links__item--featured:hover {
  background-color: #fff;
}

.links__item .links__item--product:hover {
  background-color: #fff;
}

.links__item .links__item--blog:hover {
  background-color: #fff;
}

.links__item .links__item--upcoming {
  border-bottom: 3px solid #B21F5A;
  box-shadow: inset 0 -4px 0 #B21F5A;
  border-radius: 25px;
  border: 2px solid #B21F5A;
  background-color: #B21F5A;
}

.links__item .links__item--promo {
  border-bottom: 3px solid #A8B21F;
  box-shadow: inset 0 -4px 0 #A8B21F;
  border-radius: 25px;
  border: 2px solid #A8B21F;
  background-color: #A8B21F;
}

.links__item .links__item--past-event {
  border-bottom: 3px solid #771FB2;
  box-shadow: inset 0 -4px 0 #771FB2;
  border-radius: 25px;
  border: 2px solid #771FB2;
  background-color: #771FB2;
}

.links__item .links__item--featured {
  box-shadow: inset 0 -4px 0 #73e2a7;
  border-radius: 25px;
  border: 2px solid #73e2a7;
  background-color: #73e2a7;
}

.links__item .links__item--product {
  border-bottom: 3px solid #43F9D5;
  box-shadow: inset 0 -4px 0 #43F9D5;
  border-radius: 25px;
  border: 2px solid #43F9D5;
  background-color: #43F9D5;
}

.links__item .links__item--alumni {
  border-bottom: 3px solid #F943B0;
  box-shadow: inset 0 -4px 0 #F943B0;
  border-radius: 25px;
  border: 2px solid #F943B0;
  background-color: #F943B0;
}

.links__item .links__item--blog {
  border-bottom: 3px solid #8C43F9;
  box-shadow: inset 0 -4px 0 #8C43F9;
  border-radius: 25px;
  border: 2px solid #8C43F9;
  background-color: #8C43F9;
}

.channels {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
}

.channels .channels__item {
  flex: 1;
  margin-right: 5px;
  transition: transform 0.2s;
}

.channels__item:hover {
  transform: scale(1.5);
}