body,
html {
  height: 100%;
}

.privacyOuterContainer {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacyInnerContainer {
  padding-top: 15em;
  width: 80%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mainContainer {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  margin: 0;
  align-items: center;
  justify-content: space-between;
}

.innerContainer {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.logoContainer {
  display: flex;
  height: 80%;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.scaleLogo {
  display: flex;
  height: 40%;
  width: 40%;
}

.linkOuterContainer {
  height: 10%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.linkInnerContainer {
  width: 40%;
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
}

.copyrightContainer {
  height: 10%;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
}

.privacy {
  padding-top: 5em;
  width: 70%;
  background-color: #ffffff;
}

.copyright {
  font-size: small;
}

p {
  text-align: center;
  font-family: 'Courier New', Courier, monospace;
}

a {
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  font-family: 'Courier New', Courier, monospace;
}

.underline {
  position: relative;
}

.underline::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: #000000;
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

@media (hover: hover) and (pointer: fine) {
  .underline:hover::before {
    left: 0;
    right: auto;
    width: 100%;
  }
}