/* CSS Personal Blog Website */

@import url(bloggrid.css);
@import url(blogpost.css);
@import url(footer.css);

/* Main CSS */

.container {
    display: grid;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
    justify-content: center;
    grid-auto-rows: minmax(100px, auto);
    grid-template-areas: "hd" "sr" "mn" "bl" "ft";
}

.box {
    display: flex;
    justify-content: left;
    padding: 20px;
}

.logo {
    grid-area: hd;
    width: 100%;
    object-fit: cover;
}

.search {
    grid-area: sr;
    width: 100%;
    font-size: 24px;
    text-align: center;
}

.menubtn {
    background-color: #AA6075;
    color: white;
    padding: 16px;
    border: none;
    cursor: pointer;
    font-size: 28px;
    width: 100%;
    border-radius: 20px;
}

.vert-menu {
    grid-area: mn;
    width: 100%;
    position: relative;
    display: inline-block;
}

.vert-menu-drop {
    display: none;
    width: 100%;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    z-index: 1;
    text-align: center;
}

.vert-menu-drop a {
    background-color: #eee;
    color: black;
    display: block;
    padding: 20px;
    font-size: 28px;
    text-decoration: none;
    border-radius: 20px;
}

.vert-menu-drop a:hover {
    background-color: lightgray
}

.vert-menu:hover .vert-menu-drop {
    display: block;
}