/* 導覽列 */
html,
body {
    box-sizing: border-box;
    margin: 0px;
    padding: 20px;
    background-color: antiquewhite;
}

.title {
    display: flex;
}

.logo {
    width: 10%;
}

.nav-list {
    display: flex;

}

.nav-item {
    list-style: none;
    margin: 0px 20px;
}

.images {
    width: 100%;
    display: flex;
    justify-content: center;
}

.images img {
    max-width: 30%;
    margin: 20px;
}

.head {
    background-color: white;
    padding: 20px;
}