/* navbar styling */
body {
  background-color: #09092d;
  margin: 10px auto;
  max-width: 900px;
  font-family: 'Lato';
  height: 100vh;
}

main{
  height: 80%;
}

/* navbar styling */
header {
  border-bottom: gray 1px solid;
  width: 100%;
  height: 10%;
  background-color: #09092d;
}

nav {
  display: flex; 
  height: 100%;
}

nav a:link{
  text-decoration: none;
  color:#f6f7fb;
}

  nav a:visited{
    text-decoration: none;
    color:#f6f7fb;
  }

  nav a:hover{
    text-decoration: none;
    border-bottom: white 5px solid;
    padding: 1em;
  }

nav div:first-child{
  color: #f6f7fb;
  width: 10%;
  margin: auto 0;
  margin-left: 1%;
  margin-right: 1%;
  font-size: 1.5em;
  font-family: 'Roboto', sans-serif;
}

nav ul {
  color: #f6f7fb;
  display: flex;
  width: 40%;
  margin-left: 5px;
}

nav li {
  margin: auto;
}

nav div:nth-last-child(2){
  background-color: #ffcd1f;
  color: #09092d;
  margin-left: auto;
  margin-right: 1%;
  margin-top: auto;
  margin-bottom: auto;
  padding: 5px 35px;
  border-radius: 2px;
  transition: 300ms;
}

nav div:last-child{
  background-color: #4255ff;
  margin-left: 1%;
  margin-right: 1%;
  margin-top: auto;
  margin-bottom: auto;
  padding: 5px 10px;
  border-radius: 2px;
  transition: 300ms;
}

nav div:nth-last-child(2):hover{
  background-color: #fbe07d;
}

#study-btn{
  color: #09092d;
}

nav div:last-child:hover{
  background-color: #1a29b9;
}

/* Home Page Logo/Intro */
section.logo{
  margin-top: 30px;
  margin-bottom: 30px;
  border: grey 1px dashed;
  display: flex;
  font-family: 'Roboto', sans-serif;
  background-color: #09092d;
}

section.logo p{
  font-size: 1.75em;
  color:#f6f7fb;
  margin: auto 0;
  margin-left: 30px;
  width: 50%;
}

section.logo b{
  color:#ffcd1f;
}

section.logo img{
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.form {
  /* border: black 1px solid; */
  background-color: #2e3856;
  color:#f6f7fb;
  margin-top: 20px;
  min-height: 250px;
  width: 400px;
  margin: 0 auto;
  margin-bottom: 30px;
  border: #f6f7fb 1px dashed;
  border-radius: 5px;
}

form {
  padding-left: 10px;
  padding-bottom: 10px;
}

#card-form {
  padding-top: 10px;
}

/* footer */

footer {
  display: flex;
  justify-content: space-between;
  border-top: gray 1px solid;
  color: #f6f7fb;
  height: 160px;
  background-color:#09092d;
  padding-top: 10px;
  padding-left: 5px;
  background-color: #09092d;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-self: flex-end;
}

.footer-nav ul {
  display: flex;
  width: 90%;
  flex-direction: column;
  justify-content: flex-end;
  row-gap: 10px;
}

.footer-nav a:hover {
  text-decoration: none;
  border-bottom: white 5px solid;
  padding: 0 0 5px 0;
}

.footer-nav div:nth-last-child(2) {
  background-color: #ffcd1f;
  color: #09092d;
  margin-left: auto;
  margin-right: 1%;
  margin-top: 15px;
  margin-bottom: 5px;
  padding: 5px 35px;
  border-radius: 2px;
  transition: 300ms;
}

.footer-nav div:last-child {
  text-align: center;
  background-color: #4255ff;
  margin-left: 1%;
  margin-right: 1%;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 5px 10px;
  border-radius: 2px;
  transition: 300ms;
}

@media (max-width: 900px) {
  /* p {
    color: red;
  } */
  
  nav {
    width: 900px;
    position: sticky;
  }

  section {
    width: 900px;
  }

}