@charset "UTF-8";

html {
	scroll-behavior: smooth;
}


.main-header {
    background: #222;
    color: #fff;
    padding: 12px 0;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}
.logo img {
    max-height: 36px;
    margin-right: 8px;
}
.nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}
.nav li {
    margin-left: 20px;
}
.nav a {
    color: #fff;
    text-decoration: none;
}
.nav a:hover {
    text-decoration: underline;
}
.main-footer {
    background: #f5f5f5;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    margin-top: 40px;
    color: #555;
}
