@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif !important;
}

a {
    text-decoration: none;
}

h1, h2, h3, h4 {
    font-weight: bold !important;
}

body {
    background: #e4e4e4;
    height: 100vh;
    overflow: hidden;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1% 0 0;
    width: 100%;
    text-align: center;
    color: #eeeaea;
}

header .left,
header .right {
    display: flex;
    align-items: center;
}

.con-logo {
    width: 5%;
}

.con-logo img {
    width: 100%;
}

header .left .text {
    display: flex;
    flex-direction: column;
}

main {
    padding: 10px;
    height: calc(100% - 22%);
}
main h2,
main h4,
main p {
    text-align: center;
    color: #eeeaea;
    /* font-size: 100%; */
}

.items {
    height: calc(92% - 125px);
}
main .item {
    border-radius: 1rem;
    transition: transform .2s;
    background: #e9f1e5;
    height: 100%;
}
main .item p{
    color: #2c2c2c;
}
main .item .item-img {
    background: #BFD8AF;
}
main .item:hover {
    transform: scale(1.1);
}
main .item .btn {
    margin-top: 2%;
    margin-bottom: 2%;
    padding: 2% 15%;
    background-color: #BFD8AF;
    border-radius: 1rem;
    color: #2c2c2c;
}
main .item .btn:hover {
    background: #99BC85;
    color: #eeeaea;
    transition: .3s all ease;
}

footer {
    text-align: center;
    position: fixed;
    color: #eeeaea;
    bottom: 0;
    left: 0;
    width: 100%;
    /* margin-top: 2%; */
}

.background {
    position: fixed;
    z-index: -1;
    width:100%; 
    object-fit: cover;
}

@media only screen and (max-width: 430px) {
    body {
        height: 100%;
        min-height: 100vh;
        overflow: auto;
    }
    main {
        width: 82% !important;
    }
    main .item {
        height: 94%;
    }
    .con-logo {
        width: 15%;
    }
    .background {
        height: 100%;
    }
    .items {
        gap: 2.5rem;
    }
    footer {
        position: relative;
        padding: 2px;
        background: #0b3b2195;
        border-radius: 10px;
    }
    footer p {
        margin-bottom: 0;
    }
  }