* {
    margin: 0; padding: 0; border: 0; box-sizing: border-box;
}

body {
    background-color: bisque;
}

header {
    background-color: darkolivegreen;
    display: flex;
    justify-content: center;
    color: antiquewhite;
    height: 80px;
}

header div {
    /* border: 2px solid red; */
    text-align: center;
    text-shadow: 2px 2px 2px black;
    height: 100%;
    font-size: 2em;
}

.homeB {
    margin: auto;
    width: 15vh;
    height: 8vh;
    text-align: center;
    line-height: 5.5vh;
    background-color: rgb(159, 204, 70);
    border-radius: 15px;
    margin-top: 20px;
}

p {
    text-align: center;
    font-size: 1.5em;
    text-shadow: 2px 2px 2px rgb(99, 94, 94);
}

/* ========================================== */
#container > div {
    /* border: 4px solid black; */
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding: 10px;
}

a {
    /* border: 2px solid yellow; */
    height: 100%; width: 100%;
    text-decoration: none;
    color: rgb(17, 63, 17);
    padding: 10px;
    display: block;
    border-radius: 15px;
}

a:hover {
    background-color: rgba(86, 131, 41, 0.5);
}

ul {
    list-style-type: none;
    /* border: 2px solid green; */
    display: flex;
    padding: 2px;
    text-align: center;
}

li {
    /* border: 2px solid rgb(31, 218, 46); */
    margin: 0px 10px 0px 10px;
    flex: 1 0 auto;
    height: 80px; width: 180px;
    line-height: 55px;
    background-color: chartreuse;
    border-radius: 20px;
    border: 4px solid white;
}
li:hover {
    box-shadow: 3px 3px 5px rgb(105, 91, 89);
    transform: translateY(-6px);
}
ul li:last-child {
    width: 250px;
}
