/* Universal Values */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #000000ea;
}

html,
body {
    width: 100%;
    height: 100%;
}
/* Universal Values End */


/* Header */
.heading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
}

.heading h1 {
    font-size: 9vw;
    color: #1b6bd4bd;
    font-family: "Abril Fatface", serif;
    padding: 5rem 2rem 2rem 2rem;
    text-align: center;
}

@media (max-width:600px) {
    .heading h1 {
        font-size: 9vh;
    }
}
/* Header End */



/* Main */
/* about */
.about {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 5rem 2rem 5rem;
}

.about .pdiv {
    width: 50vw;
    height: auto;
}

.about p {
    font-size: 20px;
    color: white;
    text-align: center;
    font-family: "Cardo", serif;
}


/* WebPages Cards */
.webcards {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem 7rem 2rem;
    gap: 4rem;
}

.webcards .webCon {
    height: 430px;
    width: 430px;
    border-radius: 30px;
    background-color: rgba(237, 237, 237, 0.397);
    position: relative;
    overflow: hidden;
}

.webCon .webConImg {
    height: 100%;
    width: 100%;
    position: absolute;
}

.webCon .webConImg img {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.webCon .webConText {
    background-color: rgba(7, 7, 7, 0.822);
    height: 53%;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.webCon .webConText h1 {
    background-color: transparent;
    color: white;
    font-family: "Cardo", serif;
    font-size: 25px;
    padding: 20px 10px 20px 25px;
}

.webCon .webConText p {
    background-color: transparent;
    color: white;
    font-family: "Cardo", serif;
    font-size: 17px;
    padding: 0 10px 20px 25px;
}
/* Main End */
