* {
  box-sizing: border-box;
}

html {
  height: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Roboto', 'Montserrat', Helvetica, Arial, sans-serif;
  font-weight: 700;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  background-color: black;
}

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

.coming-soon {
  height: 759px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}

.coming-soon > .text {
  font-size: 6em;
  font-weight: 700;
  color: white;
  background-color: rgb(0, 131, 218);
  padding: 15px 30px;
}

.footer {
  border-top: 1px solid white;
  padding: 40px 0;
  background-color: rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  text-align: center;
  color: rgb(255, 255, 255);
  font-weight: 400;
}

.footer-connect-links {
  display: flex;
  align-content: center;
  justify-content: center;
  font-size: 1.5em;
  padding-bottom: 25px;
}

.connect-link {
  padding: 0 10px;
}

.connect-link a {
  background-color: rgb(0, 0, 0);
  border-radius: 50%;
  display: flex;
  color: rgb(255, 255, 255);
  border: 2px solid rgb(175, 175, 175);
  transition: 0.2s ease;
}

.connect-link a:hover {
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  display: flex;
  color: rgb(0, 0, 0);
  border: 2px solid rgb(255, 255, 255);
  transition: 0.2s ease;
}

.connect-link a i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.footer-legal-wrapper {
  display: flex;
  justify-content: space-between;
  width: 412px;
}

.footer-stage {
  color: rgb(255, 255, 255);
  transition: 0.4s ease;
}

.footer-legal-links-wrapper {
  display: flex;
}

.footer-legal-links a:hover {
  color: rgb(206, 206, 206);
  transition: 0.4s ease;
}

.footer-legal-links-separator {
  padding-left: 4px;
  padding-right: 4px;
}
