@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque&family=Inter:wght@400;500;600;700&family=Jost:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&family=Source+Code+Pro:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: auto;
    background-color: #070a13;
    /* color: #f1f5f9; */
}

header,
main,
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

header {
    background: linear-gradient(109.6deg, rgb(255, 219, 47) 11.2%, rgb(244, 253, 0) 100.2%);
    padding: 10px;
}

header p {
    font-family: "Source Code Pro";
    font-size: 0.95rem;
    color: #111111;
}

h1 {
    font-family: "Plus Jakarta Sans";
    font-size: 40px;
    font-weight: normal;
    font-weight: 700;
}

main {
    margin: 50px;
}

.hero {
    height: 17rem;
    width: 40rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.hero h1 {
    color: #f1f5f9;
    font-size: 3rem;
}

.hero span {
    font-size: 5rem;
}

.services {
    width: 70vw;
    margin: 30px;
    text-align: center;
    /* background-color: #222222; */
    background-image: linear-gradient(-225deg, #FF057C 0%, #7C64D5 48%, #4CC3FF 100%);
    background-blend-mode: multiply;
    border-radius: 40px;
    color: #f1f5f9;
}

.services .heading {
    font-family: "Jost";
    text-transform: uppercase;
    font-weight: normal;
    font-weight: 600;
    font-size: 50px;
    padding: 10px;
    /* background-color: blue; */
    align-items: center;
    justify-content: center;
}

.services .container {
    background-color: #111111;
    border-radius: 0px 0px 40px 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 20px 0px;
}

.services .container .box {
    width: 250px;
    height: 200px;
    background-image: linear-gradient(to top, #dfe9f3 0%, white 100%);
    border-radius: 30px;
    margin: 25px;
}

.services .container .box .title {
    /* background-color: #7e22ce; */
    background-image: linear-gradient(-20deg, #b721ff 0%, #21d4fd 100%);
    padding: 10px 0px;
    border-radius: 0px 30px 0px 0px;
    font-family: "Montserrat";
}

.services .container .box .desc {
    padding: 10px;
    color: black;
    font-family: "Inter";
    text-align: justify;
}

.logo {
    width: 13rem;
    border-radius: 4rem;
}

footer {
    background: linear-gradient(109.6deg, rgb(255, 219, 47) 11.2%, rgb(244, 253, 0) 100.2%);
    padding: 15px;
    font-family: "Source Code Pro";
    font-weight: 600;
}