* {
    margin: 0;
    padding: 0;
    font-family: roboto;
}

.link {
    display: flex;
    flex-direction: row;
}

.link a {
    text-decoration: none;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 18px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px;
}

h2 {
    font-weight: 900;
}

.icon i {
    font-size: 20px;
}

@font-face {
    font-family: roboto;
    src: url(Roboto-VariableFont_wdth\,wght.ttf);
}

.image {
    width: 100%;
    box-sizing: border-box;
border-radius: 10px;
    display: block;
}
.wrap{
    position: relative;
}
.imagec {
    padding-left: 10px;
    padding-right: 10px;
}

.imagetext {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    color: white;
}

.imageheading {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    width: 25%;
    text-align: center;
    color: white;
}

.overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.cards{
    position: relative;
    top:-40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
}

.card{
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 200px;
}

.card img{
    max-width: 100%;
    margin-bottom: 15px;

}

.card h3{
    font-size: 16px;
    font-weight: 900;
}

.card p{
    font-size: 14px;
    padding-top: 15px;
    padding-bottom: 15px;
}