@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;
}

.container {
    display: block;
    text-align: center;
    background-color: antiquewhite;
    max-width: 70%;
    margin: auto;
    padding: 0.7rem;

}

label {
    display: block;
    margin: 1rem;
    font-size: 20px;
}

input {
    display: block;
    margin: auto;
    padding: 8px;
    font-size: large;
}

#submit-btn {
    display: block;
    margin: 1rem auto;
    padding: 5px;
    width: 8rem;
    background-color: blue;
    color: white;
    border-radius: 3px;
    cursor: pointer;
    font-size: 20px;
}

#submit-btn:hover {
    background-color: whitesmoke;
    color: black
}

#area-output {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    
}