@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

* {
    font-family: 'Poppins', sans-serif;
}

/* Scrollbar */

::-webkit-scrollbar{
    width: 10px;
    height: 5px;
}

::-webkit-scrollbar-track{
    box-shadow: inset 0 0 8px rgba(0,0,0,0.2);
}

::-webkit-scrollbar-thumb{
    background: #ffdb56;
    border-radius: 10px;
}

body {
    padding: 0;
    margin: 0;
    background: linear-gradient(90deg, #F18DC5 50%, #68B1E4 50%); /* #FF3CAC, #3090d4*/
    max-height: 80vh;
}

a {
    text-decoration: none;
    color: #333;
    perspective: 600px;
}

.title2 {
    background: #333;
    justify-content: center;
    align-items: center;
    display: flex;
}

.title2 h1 {
    font-size: 32px;
    color: white;
    text-align: center;
    font-weight: 800;
    letter-spacing: 20px;
}

#main {
    height: 80vh;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-content: space-around;
    perspective: 600px;
}

.box {
    height: 320px;
    width: 270px;
    border-radius: 30px;
    border: 1px solid rgb(255, 255, 255);
    transform: rotateX(20deg) translateZ(0px) scale(1);
    box-shadow: 1px 20px 40px -10px rgb(168, 168, 168);
    transition: .5s cubic-bezier(0.07, 0.77, 0.85, 1.61);
    background: #fff;
}

.box img {
    border-radius: 30px 30px 0px 0px;
}

.box:hover {
    transform: rotateX(0deg) translateZ(50px) scale(1.05);
    box-shadow: 0px 100px 120px -60px rgba(98, 98, 98, 0.75);
}

.card_body {
    display: flex;
    justify-content: center;
}

.card_body_content {
    width: 80%;
}

.about {
    font-weight: 100;
    float: right;
}

.title {
    font-weight: 100;
}

.footer {
    background-color: #333;
    justify-content: center;
    align-items: center;
    display: flex;
    height: 58px;
}

.footer h5 {
    font-size: 18px;
    color: white;
    text-align: center;
    font-weight: 600;
    letter-spacing: 1.25px;
}

@media only screen and (max-width: 630px) {

    #main {
        background: linear-gradient(180deg, #FF3CAC 50%, #3090d4 50%);
    }

    #main {
        height: 800px;
        width: 100%;
        align-content: space-around;

    }

    #box {
        margin-bottom: 20px;
    }

    .footer h5 {
        font-size: 15px;
    }

}