* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-family: "Poppins", sans-serif;
  font-size: 62.5%;
}
header {
  display: flex;
  width: 100%;
  align-items: center;
}
.logo {
  display: flex;
  flex: 1;
}
.nav-links {
  display: flex;
  justify-content: flex-end;
}
.navs {
  display: flex;
  list-style: none;
  flex: 2;
  justify-content: flex-end;
}
.nav-link {
  border-style: solid;
  border-color: green;
  padding: 0.5rem;
  margin: 0.2rem;
  font-size: 2rem;
  color: aliceblue;
  border-radius: 1rem;
  background-color: rgba(22, 22, 22, 0.548);
  border-width: 0.5rem;
  justify-content: flex-end;
  font-family: "Poppins", sans-serif, monospace;
  text-decoration: none;
}
.logo-text {
  border-style: outset;
  border-color: rgb(0, 0, 0);
  padding: 0.5rem;
  margin: 0.2rem;
  font-size: 2rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: white;
  background-color: rgb(219, 146, 10);
  border-width: 0.5rem;
  justify-content: flex-end;
  color: black;
  text-decoration: none;
}

.download {
  display: flex;
  flex: 1;
  justify-content: flex-end;
}

body {
  background-image: url(images/homeback.jpeg);
  min-height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.title {
  text-align: center;
  color: White;
  margin-top: 2rem;
  font-size: 3rem;
  text-shadow: 0.2rem 0.5rem rgb(11, 117, 11);
}
.intro {
  background-color: rgb(187, 187, 192);
  margin: 9rem;
  width: 85%;
  margin: auto;
  border: 0.3rem rgb(12, 10, 10) solid;
  border-radius: 2rem;
  padding: 2rem;
  margin-bottom: 2rem;
}
.headings {
  display: flex;
  background: rgb(228, 221, 211);
  border: 0.5rem solid rgb(133, 34, 34);
  text-align: center;
  align-items: center;
  width: 18rem;
  height: 5rem;
  font-weight: bold;
  justify-content: center;
  border-radius: 2rem;
  margin: auto;
  color: rgb(7, 133, 39);
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
.intro p {
  margin-top: 2rem;
  font-size: 2rem;
  color: rgb(4, 78, 23);
}
.characters {
  display: flex;
  flex: 1;
  justify-content: space-around;
  margin-top: 1rem;
}
.char-name {
  display: flex;
  flex:1;
  border: 0.5rem solid rgb(133, 34, 34);
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
  margin: 0.5rem;
  background: rgb(228, 221, 211);
  color: rgb(7, 78, 31);
  width: 9rem;
  padding: -2rem;
}

.char-image {
  display: flex;
  justify-content: end;
  flex:1;
  width: 15rem;
  height: 25rem;
  margin-top: 1rem;
}
.char-info {
  margin-top: 2rem;
  display: flex;
  flex:1;
  justify-content: center;
  color: rgb(16, 17, 16);
  font-size: 1.5rem;
  font-weight: 500;
  border: 0.2rem red solid;
  border-radius: 2rem;
  background: rgb(218, 221, 214);
  padding: 2rem;
}

.sara,.Victor,.Anna{
  display: flex;
  flex-direction: column;
  align-items: center;

}

.hide{
  display: none;
}

.nav-link:hover  {
  background: black;
  cursor: pointer;
  display: block;
}
.nav-link:focus {
  display: block;

}