* {
  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;
  flex-direction: column;
  align-items: center;
  justify-content: center; */
}

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;
}

.dropdown-toggle {
  font-size: 1.6rem;
}

.dropdown-item {
  font-size: 1.6rem;
  text-shadow: none;
}

.create-workout {
  margin: 100px 30px 30px 0px;
  display: block;
  align-self: flex-end;
  font-size: 1.5rem;
  color: white;
  background-color: rgba(24, 24, 24, 0.74);
  padding: 10px;
  text-shadow: 2px 2px 2px black;
  border: solid black 3px;
}

.create-workout:hover {
  color: black;
  background-color: rgb(122, 122, 122);
  font-style: italic;
}

main {
  width: 85vw;
  margin: 30px auto 150px auto;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

h1 span,
h2 span {
  background-color: rgba(43, 42, 42, 0.7);
  text-shadow: 2px 2px 2px black;
  padding: 3px;
}

h2 {
  font-style: italic;
}

.query {
  margin-top: 30px;
  border: solid black 2px;
  width: 100%;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.751);
  display: flex;
  justify-content: space-evenly;
}

.submit-query {
  padding: 2px 10px;
}

.submit-query:hover {
  background-color: rgb(89, 89, 89);
  color: white;
  font-style: italic;
}

.exercise-container {
  margin-top: 30px;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 5px;
}

.exercise-container a {
  text-decoration: none;
  display: block;
  width: 24%;
}

.exercise-card {
  height: 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #faf9f6;
  border: solid black 3px;
  color: black;
  text-align: center;
}

.exercise-card:hover {
  background-color: rgba(195, 195, 195, 0.7);
  font-style: italic;
}

.not-found {
  color: black;
  background-color: white;
  padding: 10px;
  border: solid black 2px;
}

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

/**/
/**/
