@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}
.home-page{
    display: flex;
    margin: 20px 20px;
}
.home-page a{
    text-decoration: none;
    color: rgb(247, 164, 21);
    font-size: 30px;
    margin: 15px 15px;
}
.home-page button{
    border: none;
    padding: 5px 5px;
    font-size: 15px;
    font-weight: 550;
    background-color: rgb(250, 153, 78);
    border-radius: 15px;
}
.home-page button a{
    color: white;
    font-size: 20px;
}

.card{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin: 10px 10px;
    padding: 20px 20px;
    background-color: #ffdbd3;
    border-radius: 10px;
}
.card h2{
    color: #fc8905;
    font-size: 40px;
    align-items: center;
    display: flex;
    flex-direction: column;
}
.card h3{
    color: #fc8905;
    font-size: 25px;
}
.card p{
    color: #a06f20;
    font-size: 20px;
}
.card p.title{
    color: #4b3005;
    font-weight: 700;
    font-size: 30px;
}
.card .icon{
    align-items: center;
    display: flex;
    flex-direction: column;
}
.card .icon img{
    margin-bottom: 10px;
    border-radius:15px;
}
.card ul li{
    font-size: 20px;
    color: #86570b;
    margin: 10px 20px;
} 
.card a{
    text-decoration: none;
    font-size: 18px;
    color: white;
    border: 1px solid #ff6237;
    background: #ff6237;
    padding: 5px 5px;
    border-radius: 5px;
    max-width: fit-content;
}