body {
    margin: 0;
    background-color: #262626;
}

header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: solid 1px white;
    height: 150px;
    background-color: #262626;
}

header i {
    font-size: 50px;
}

header h1 {
    font-size: 40px;
    color: #D7D7D9;
}

.logo img {
    width: 10%;
}

.nav ul {
    display: flex;
    gap: 10px;
}

.nav li,
a {
    color: white;
    text-decoration: none;
    list-style: none;
}

.title-sec {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    font-size: 25px;
    color: #BF7B3F;
}

.card {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 50px;
}

.cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    padding: 20px;
    width: 230px;
    height: 370px;
    background-color: #9A98A6;
    transition: 1.1s;
}

.cards:hover {
    transform: scale(1.1);
}


.cards img {
    width: 100%;
}

.nav a:hover {
    color: #BF7B3F;
}

.btn-cards {
    margin-left: 25px;
    background-color: #BF7B3F;
    color: white;
    cursor: pointer;
    border-radius: 10px;
    width: 100px;
    padding: 5px;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 100px;
    border-top: solid 1px white;
}

.lgo-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.lgo-title i {
    font-size: 30px;
}

.lgo-title h2 {
    color: #D7D7D9;
}

.list ul, li, a{
    color: white;
    width: 150px;
    font-size: 19px;
    margin-bottom: 3px;
    text-decoration: none;
    list-style: none;
}

.list a:hover {
    color: #BF7B3F;
}

.web {
    display: flex;
    justify-content: center;
    margin-right: 100px;
    gap: 15px;
}

.web a {
    width: 35px;
}

.web img{
    width: 100%;
}