@font-face {
    font-family: 'LemonMilk';
    src: url('LemonMilk-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Lato'; /* ADDED THE SEMICOLON HERE! */
    src: url('Lato.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Resetting some browser defaults so it's edge-to-edge */
body {
    font-family: 'LemonMilk', sans-serif;
    margin: 8;
    padding: 0;
    background-color: #f0f0f0;
}

.blog-header {
    width: 100%;
    height: 220px; /* Matches your header height */
    background-image: url('header995x136.png'); /* Put your filename here! */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.navbar {
    background-color: #333; /* Pick a color that matches your aesthetic! */
    padding: 10px 0;
}

.navbar ul {
    list-style-type: none; /* Removes the bullet points */
    margin: 0;
    padding: 0;
    text-align: center;
}

.navbar li {
    display: inline; /* Makes them sit side-by-side */
    margin: 0 20px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-family: sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

.navbar a:hover {
    color: #ff99cc; /* A cute pop of color when you hover! */
}

.login-box h2, .login-box input, .login-box button {
    font-family: 'Lato', sans-serif; /* APPLYING LATO! */
}

.login-box {
    background: #222;
    padding: 30px;
    border: 2px solid #555;
    text-align: center;
    color: #0f0; 
}

.login-box button {
    background: #000;
    color: #0f0;
    border: 1px solid #0f0;
    padding: 5px 15px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    margin-top: 10px;
}

.login-box button:hover {
    background: #0f0;
    color: #000;
}