@import url("https://fonts.googleapis.com/css2?family=Megrim&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap");

*{
    margin: 0;
}
body{
    font-family: "Work Sans", sans-serif;
    text-align: center;
    height: 100%;
}
nav a{
font-size: larger;
margin-top: 1rem;
text-decoration: none;
color:#fff;
padding: 2rem;
}
nav{
    text-align: right;
    margin-top: 0;
    padding:1rem;
    background-color: #368DC5;
    border-bottom-right-radius: 1rem;
}
h1{
    margin: 1rem;
    font-family: "Megrim", cursive;
    text-align: center;;
}

button{
    margin: 1rem;
    font-size: larger;
    background-color:#368DC5;
    padding:0.3rem;
    border: none;
    border-radius: 0.5rem;
    width: 50%;
    align-self: center;
}
#output{
margin-top: 1rem;
font-size: larger;
}

h2{
    margin-top: 2rem;
}

.container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quiz{
    width: 85%;
  margin: 1rem auto;
  font-size: larger;
  padding: 1rem 0;
}

.questions{
  margin: 1rem 0;
  padding: 0.2rem;
}

button{
    margin: 0;
    cursor: pointer;
}

footer a{
    font-size: large;
    margin: 0.5rem;
    text-decoration: none;
    color: #fff;
}
footer{
    
  background-color: #368DC5;
 padding: 1rem;
  left: 0;
  bottom: 0;
  text-align: center;
}