* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100vh;
}

body {
  min-height: 100vh;
  font-family: "KG Payphone", sans-serif;
  position: relative;
  background: url("/imgs/boxingGirl.jpg");
  display: flex;
  align-items: center;
  justify-content: center;
}

.return-home {
  position: absolute;
  left: 30px;
  top: 100px;
  width: fit-content;
  border: solid black 2px;
  padding: 5px;
  text-decoration: none;
  color: black;
  background-color: rgb(179, 177, 177);
  font-size: 1.3rem;
}

.return-home:hover {
  background-color: black;
  color: white;
  font-style: italic;
}

nav,
footer {
  width: 100%;
  position: fixed;
  z-index: 3;
  background-color: black;
  color: white;
  background: linear-gradient(to right, #800020, #7b0101, #600015);
  text-shadow: 4px 4px 4px black;
}

nav {
  top: 0;
  display: flex;
  justify-content: space-between;
  height: 8%;
  border-bottom: solid black 4px;
}

nav * {
  display: block;
}

nav section {
  gap: 30px;
  display: flex;
}

nav p {
  align-self: center;
  justify-self: center;
  font-size: 2.5rem;
  margin-left: 10px;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 100px;
  margin-right: 100px;
  font-size: 2.5rem;
}
.nav-link {
  padding: 6px;
}
.nav-link:hover {
  color: black;
  font-style: italic;
  background-color: white;
}

nav a {
  text-decoration: none;
  color: white;
  padding: 3px;
}

.login-container {
  width: 70vw;
  max-width: 1100px;
  margin: auto;
  border: solid black 5px;
  box-shadow: 10px 10px 10px rgb(6, 6, 6);
}

.login-container h1 {
  background-color: grey;
  text-align: center;
  color: white;
  margin-bottom: 0;
  padding: 10px;
  border-bottom: solid black 4px;
  text-shadow: 2px 2px 2px black;
}

.login-container section {
  display: flex;
}

.login-container form {
  background-color: white;
  width: 40%;
  padding: 20px;
}

.login-container img {
  display: block;
  width: 60%;
}

form p {
  color: red;
  font-weight: bold;
}

.sign-up-prompt {
  margin-top: 10px;
  color: black;
}

footer {
  bottom: 0;
  height: 5%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: solid black 4px;
}

/**/
/**/
