* {
    margin: 0;
    padding: 0;
}
html,body {
    font-size: 16px;
}
.logo img {
    object-fit: contain;
}
a {
    text-decoration: none;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content {
    width: 1000px;
    margin: 0 auto;
    background-color: #dba879;
}
header {
    display: flex;
    height: 100px;
    padding: 40px;
    box-sizing: border-box;
    background-color: rgb(211, 96, 30);
    align-items: center;
}
header .logo {
    width: 120px;
    height: 60px;
}
header .title {
    font-size: 30px;
    margin-left: 40px;
    color: black;
    text-shadow:2px 3px 1px rgb(0, 0, 0);
}
nav {
    display: flex;
    align-items: center;
    height: 50px;
    color: #fff;
    background-color: rgb(211, 96, 30);
}
nav .nav-item {
    text-align: center;
    width: 25%;
    height: 50px;
    font-size: 16px;
    line-height: 50px;
    cursor: pointer;
    transition: all 0.4s;
}
nav .nav-item:hover {
    transition: all 0.4s;
    color: black;
    background-color: #fff;
}
footer {
    margin-top: 10px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    color: #fff;
    background-color: rgb(211, 96, 30);
}

.container .card {
    padding: 10px;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    margin-bottom: 20px;
    justify-content: space-between;
}
.card .card-img {
    width: 30%;
    height: 200px;
}
.card .card-text {
    width: 65%;
}
.card .card-text .card-text-name {
    color: rgb(134, 77, 187);
    font-size: 23px;
}
.card .card-text-desc {
    margin-top: 20px;
    line-height: 30px;
}