@import url('https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Ubuntu:wght@400;700&display=swap');
body{
    margin: 0;
    /* text-align: center; */
    font-family: 'Ubuntu', sans-serif;
}
header{
    display: flex;
    justify-content:space-between;
    background-color: blue;
    height: 3rem;
    
    /* text-decoration: noen; */
}

#nav-title {
    font-size: 1.5rem;
    margin-left: 0.4rem;
    color: white;
    font-family: 'Berkshire Swash', cursive;
}
nav {
    margin-top: 0.7rem;
    margin-right: 0.5rem;
}

a {
    text-decoration: none;
    color: whitesmoke;
    padding: 5px;
    font-size:large;
    border: 2px solid white;
    border-radius: 3px;

}
a:hover{
    border: 2px solid black;
}

h1{
    text-align: center;
    margin-bottom: 2rem;
}
.question-container{
    max-width: 70%;
    text-align: left;
    /* border: 2px solid green; */
    margin: auto;
    background-color: antiquewhite;
    padding: 1rem;
}

#submit-btn {
    display: block;
    margin: 2rem auto;
    padding: 5px;
    width: 8rem;
    background-color: blue;
    color: white;
    border-radius: 3px;
    cursor: pointer;
}
#submit-btn:hover{
    background-color: whitesmoke;
    color:black
}
#output {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

