/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Apply a basic style to the header */
header {
    background-color: #3498db;
    color: #ffffff;
    padding: 10px 0;
    text-align: left;
    margin-bottom: 1%;
    height: 125px;
}

/* Apply styles to the navigation links */
nav ul {
    list-style: none;
    margin-left: 20px;
}

nav ul li {
    display: inline;
    margin-right: 20px;
    font-color:red;
}

nav ul li:last-child {
    margin-right: 0;
}

nav ul li a {
    color: red;
    text-decoration: none;
    font-weight: bold;
}

/* Apply a hover effect to navigation links */
nav ul li a:hover {
    text-decoration: underline;
}
form {
    margin-bottom: 20px;
}

#resultOutput {
    font-weight: bold;
    margin-top: 20px;
}

container {
            max-width: 700px;
            margin-top: 50px;
        }

form-group {
            margin-bottom: 20px;
        }