/* ======= Home ======= */

.home h2 {
    font-size: 3rem;
    margin: 20px 0;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.home-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}

.home-card {
    width: 48%;
    text-align: center;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.card1 , .card2 {
    position: relative;
    bottom: 0;
    transition: all 0.7s ease-in-out;
}

.card1:hover , .card2:hover {
    bottom: 15px;
    box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.3);
}

.home-card img {
    width: 100%;
}

.home-card p {
    font-size: 1.5rem;
    height: 50px;
    background-color: #f9f9f9;
    color: #333;
    letter-spacing: 1.5px;
    font-weight: 500;
}