* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
    font-family: "Microsoft YaHei", sans-serif;
    background-color: #daf0fe;
}
body {
    display: flex;
    width: 100%;
    flex-direction: column;

}
header {
    width: auto;
    color: white;
    text-align: center;
}
header img {
    width: 100%;
    height: 100%;
}

.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer {
    background-color: rgb(229, 211, 189);
    width: 100%;
     
    padding: 10px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-links {
    display: flex;
    justify-content: left;
    margin-bottom: 15px;
}

.footer-links a {
   /* color: white; */
    text-decoration: none;
    margin: 0 15px;
}

.footer-content {
    text-align: left;
    margin: 20px;
}

.footer-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px;
}

.footer-boxes1 {
    display: grid;
    margin: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.box {
    background: rgba(255, 255, 255, 0);
}

.box-1 {
    width: 100px;
    height: 50px;
    margin: auto;
}

.box-2 {
    width: 60px;
    margin: auto;
    height: 80px;
}

.box-3 {
    width: 100px;
    margin: auto;
    height: 50px;
}

.footer-boxes2 {
    display: grid;
    margin: 20px;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.footer-boxes2 div {
    background-color: rgba(255, 255, 255, 0.26);
    margin: 0 10px;
    width: 180px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    text-align: center;
}
a{color: #773636;text-decoration: none; font-size: 16px;}