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

.banner {
    background-color: rgb(182, 0, 0);
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-logo img{
    width: 200px;
}


nav {
    display: flex;
    justify-content: space-between;
    /*border: 1px solid red;*/
    padding: 10px;
}


.menu {
    display: flex;
    list-style: none;
}

.menu li{
    margin-left: 10px;
}

.menu li a {
    text-decoration: none;
    color: #333;

}

.heading {
    font-family: "Trirong", serif;
    align-items: center;
}

.footer {
    background-color: rgb(182, 0, 0);
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: auto;
}

.footer p {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 5px;

}