/* style.css */

/* For the whole document */

@font-face {
    font-family: 'Lato';
    src: url('/Fonts/Lato-Black.ttf') format('ttf'),
        url('/Fonts/Lato-Regular.ttf') format('ttf');   
}

h1 {
    font-size: 24px;
    margin: 0;
}



/* Header */


header {
    background-color: #ffffff;
    color: #1e1e1e;
    padding: 20px;
    text-align: left;
    font-family:Arial, Helvetica, sans-serif;
}

nav ul {
    list-style: none; 
    padding: 0;
}

nav li {
    display: inline-block;
    margin-right: 20px;
}

nav a {
    text-decoration: none; 
    color: #fff;
}

.main {
    padding: 20px;
}



