/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
@font-face {
  font-family: 'Minecraftia';
  src: url(Minecraftia-Regular.ttf);
}

body {
  background-image: url("images/bg.webp");
  background-repeat: repeat;
  color: black;
  font-family: 'Minecraftia', 'Courier New', Courier, monospace;
  display: flex;
  flex-direction: column;
  margin: 0;
  justify-content: center;

}

main {
  background-color: rgba(212, 194, 214, 0.85);
  margin-left: 20%;
  margin-right: 20%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

header {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 10px;

}

.logo {
  width: 300px;
}


nav ul {
  margin: 0;
  padding-left: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-image: linear-gradient(to bottom, #96FE77, #20D8D9);
  border-top: 2px solid #70BE58;
  border-bottom: 2px solid #70BE58;
  margin-left: 20%;
  margin-right: 20%;
}

nav li {
  list-style: none;
  font-size: larger;
  text-align: center;
  display: flex;
  font-weight: normal;
}

nav li:hover {
  list-style: none;
  font-size: larger;
  text-align: center;
  display: flex;
  font-weight: normal;
  background-color: white;
}

nav li a {
  padding: 0.5em 0.75em;
  font-size: 1em;
  text-decoration: none;
  color: black;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

section h2 {
  font-size: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: normal;
  text-shadow: 3.6px 3.6px 0px #eeeeee;
}

.title {
  padding-bottom: 0;
}

h1 {
  font-size: 50px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0;
  font-weight: normal;
  text-shadow: 6.25px 6.25px 0px #eeeeee;
}

section p {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0;
  margin-left: 20%;
  margin-right: 20%;
}

footer {
  background-image: linear-gradient(to bottom, #96FE77, #20D8D9);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  margin: 0;
  padding: 0;
  border-top: 2px solid #70BE58;
  border-bottom: 2px solid #70BE58;
}

footer div {
  padding: 0;
  margin: 10px;
}

footer p {
  padding: 0;
  margin: 10px;
}

footer div a {
  padding: 0;
  margin: 5px;
}

footer a {
  text-decoration: none;
  color: #1358FF;
  text-shadow: 2px 2px 0px white;
}

footer a:hover {
  text-decoration: none;
  color: white;
  text-shadow: 2px 2px 0px #1358FF;
}

.notfound {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
}

.femur {
  width: 512px;
  height: 512px;
  margin: 100px;
  image-rendering: crisp-edges
}

.card_link {
  width: 32px;
  height: 32px;
  filter: drop-shadow(white 3px 3px 0px);
}

.card_link:hover {
  filter: drop-shadow(#1358FF 3px 3px 0px);
}

.card_links a {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.card_links {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-start;
  margin: 0;
  padding: 0;
}

.full_card {
  width: 350px;
  margin: 10px;
  margin-top: 30px;

}

.card {
  width: 350px;
}

.applink{
  text-decoration: none;
  color: #1358FF;
  text-shadow: 2px 2px 0px white;
  padding-left: 10px;
  padding-right: 10px;
}

.applink:hover {
  text-decoration: none;
  color: black;
  background-color:white ;
}