@font-face {
  font-family: "sspb";
  src: url("../css/sspb.otf") format("opentype");
}
@font-face {
  font-family: "sspr";
  src: url("../css/sspr.otf") format("opentype");
}
@font-face {
  font-family: "sspl";
  src: url("../css/sspl.otf") format("opentype");
}
* {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  word-wrap: break-word;
  text-decoration: none;
}

html {
  font-size: 62.5%;
}

body {
  background-image: url("../images/background.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  gap: 3rem;
}
body header {
  z-index: 5;
}
body header h1 {
  font-family: "sspb";
  font-size: 5rem;
  line-height: 7.5rem;
  color: rgb(250, 250, 250);
  text-align: center;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}
body header p {
  font-family: "sspl";
  font-size: 2rem;
  line-height: 3rem;
  color: rgb(250, 250, 250);
  text-align: center;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}
body nav {
  z-index: 4;
}
body nav ul {
  display: flex;
  flex-flow: row;
  gap: 2rem;
}
body nav ul li {
  padding: 2rem;
  border: 1px solid rgb(250, 250, 250);
  border-radius: 50%;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}
body nav ul li a {
  display: flex;
  flex-flow: column;
  font-size: 2rem !important;
  color: rgb(250, 250, 250);
}
body nav ul li a:hover {
  cursor: pointer;
}
body iframe {
  margin-bottom: 4rem;
  position: fixed;
  bottom: 0;
  border-radius: 1.2rem;
  z-index: 6;
  max-width: 70vw;
  height: 10rem !important;
}