* {
    box-sizing: border-box;
}

 a { 
    text-decoration: none;
 } 

body {
	margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
    background: #f1f1f1;
}

/* Style the header */
header {
    background-color: black;
    padding: 1px;
    text-align: center;
    font-size: 14px;
    color: white;
}

/* Create two columns/boxes that floats next to each other */
nav {
    float: left;
    width: 30%;
    padding: 20px;
}

/* Style the list inside the menu */
nav ul {
    list-style-type: none;
    padding: 0;
}

article {
    float: left;
    padding: 20px;
    width: 70%;
}

/* Clear floats after the columns */
section:after {
    content: "";
    display: table;
    clear: both;
}

/*/* Style the footer */
footer {
    background-color: lightgrey;
    padding: 15px;
    text-align: center;
}

footer a {
    padding: 10px;
}*/

/* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */
@media (max-width: 600px) {
    nav, article {
        width: 100%;
        height: auto;
    }
}

article input {
    text-align: center;
}

