*{ 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: black;
}

header{
    background-color: #333;
    color: white;
    padding: 1rem;
}

nav ul li{
    margin: 0 15px;
}
nav ul li a{
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}

main{
    background-color: wheat;
    color: rgb(18, 17, 17);
    padding: 1rem;
    
    text-align: center;
    /* position: absolute; */
    bottom: 0;
    width: 100%;
}

h1,h2,h3{
    color: rgb(18, 17, 17);
}

.Hero{
    text-align: center;
    margin-bottom: 2rem;
    background-color: wheat;
}


.bloglist .blogitem{
    margin-bottom: 1.5rem;

}

.bloglist .blogitem h3{
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.bloglist .blogitem a{
    text-decoration: none;
    color: #333;
} 
    
.create blog form{     
    display: flex;
    flex-direction: column;
}
.create blog form label{
    margin-top: 10px; 

}

.create blog form input{
    margin-top: 15px;
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
}
.create blog form button:hover{
    background-color: #555;
}

nav ul li{
    margin-bottom: 10px;
} 
.index{
    background-color: wheat;
}