* {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-align: center;
}

.topBarLinks {
  text-decoration: none;
  color: rgb(90, 90, 90);
  transition: 0.5s;
}

a:hover {
  color: rgb(121, 121, 121);
  transition: 0.5s;
  cursor: pointer;
}

body {
  background: linear-gradient(
    0turn,
    rgb(34, 34, 34),
    rgb(61, 61, 61),
    rgb(34, 34, 34)
  );
  color: white;
  height: 100vh;
  width: 100vw;
  overflow-x: hidden
}

.space {
  display: block;
  height: 5vh;
  width: 100vw;
}

.navBar {
  border-bottom: 3px rgba(255, 255, 255, 0.1) solid;
  color: white;
  padding: 1%;
}

.section {
  padding: 1%;
  margin-left: 20vw;
  margin-right: 20vw;
  border: 2px white solid;
  border-radius: 3vh;
}

.box {
  color: white;
  width: 100%;
  margin: 0.5%;
  text-align: center;
  border: rgb(112, 112, 112) solid 2px;
  border-radius: 10px;
  padding: 20px 20px;
  flex-direction: row;
  justify-content: center;
  background-color: rgb(34, 34, 34);
  transition: 0.25s;
}

.box:hover {
  transform: scale(1.01);
}

.innerBox {
  color: white;
  width: 100%;
  text-align: center;
  border-radius: 3vh;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  transition: 0.25s;
}

.cardS {
  color: white;
  margin: 2px;
  text-align: center;
  border: white solid 2px;
  border-radius: 2vh;
  padding-top: 2%;
  padding-bottom: 2%;
  display: flex;
  width: 100%;
  /* flex-basis:; */
  flex-direction: column;
  justify-content: center;
  transition: 0.25s;
}

.cardS:hover {
  transform: scale(1.02);
}

.textRight {
  text-align: right;
}
