.html,

body {
  padding: 0;
  margin: 0;
  height: 100%;
  background: linear-gradient(180deg, #fff, #b8afda 50%, #3805e3);
}

.header {
  height: 23rem;
  background: transparent;
  background-position: 50% 50%;
  background-size: cover;
}

.titleSection {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 4rem;
  width: inherit;
  margin-bottom: 3rem;
  padding: 2rem 0.5rem 2rem 2rem;
  background-color: transparent;
  font-style: normal;
  font-family: "Poppins";
  font-size: 1.675rem;
  color: #3805e3;
  font-weight: bold;
}

.logo {
  margin-right: 2rem;
  height: 64px;
  width: 64px;
  border-radius: 5%;
}

.captionSection {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  font-family: "Poppins";
  font-style: italic;
  font-weight: bold;
  font-size: 28pt;
  color: #161616;
  text-shadow: 1px 1px 5px #818181;
}

.contentSection {
  background-color: transparent;
  height: 100%;
}

.content {
  flex-grow: 1;
  padding: 3rem 5rem;
  min-height: calc(100% - 24rem);
  background-color: transparent;
}

.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  height: 100%;
  margin: 3rem 5rem;
  font-family: "Poppins";
  list-style: none;
}

.link {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 15rem;
  width: 18rem;
  min-width: 300px;
  margin: 50px;
  box-shadow: 0px 1px 3px 3px #16161678;
  border-radius: 10px;
  border: solid 2px #16161696;
}

.img {
  width: 50%;
  height: 12rem;
}

.linkText {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: #DCD7EC;
  width: 85%;
  font-size: 1rem;
  font-weight: bold;
  font-family: "Poppins";
  font-style: normal;
  border-radius: 5px;
  box-shadow: 0px 1px 5px 5px #DCD7EC;
}
a {
  text-decoration: none;
  color: #161616;
}
a:hover {
  cursor: pointer;
  box-shadow: 0px 3px 8px 4px #16161696;
  transform: translate(0, -2px);
  transition: 0.2s;
}


#disclaimer {
  position:fixed;
  min-width: 100%;
  min-height: 100%;
  background-color: transparent;
}

.wrapper {
  position: absolute;
  left:50%;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  z-index:5;
}

.disclaimer-content {
  background-color: #161616;
  color:white;
  font-family: "Poppins";
  left:-50%;
  padding:20px 5%;
  position: relative;
}

.disclaimer-title {
  font-family: "Poppins";
  font-weight: bold;
  font-style: italic;
  font-size: xx-large;
  text-transform: uppercase;
}