@import url('./main.css');

body {
    font-family: "Nunito", sans-serif;
    background-color: #F1DDE1;
    margin: 0;
    padding: 20px;
}

img {
    max-width: 100%;
}

.card {
    min-height: 525px;
}

.card-title {
    font-size: 22px;
}

.image-wrapper {
    height: 250px;
    width: 100%;
    background-color: #007bff;
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

.card-body {
    min-height: 275px;
}

.card-text {
    min-height: 105px;
}

h1.content-title {
    color: #333;
    font-size: 2.5rem;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    font-weight: 800;
}

.content {
    background-color: var(--white);
    padding: 2rem 3rem;
    border-radius: 20px;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: #007bff;
    border: 1px solid #007bff;
    padding: 8px 12px;
    border-radius: 5px;
    transition: 0.3s;
}

.content-img {
    height: 600px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.back-link:hover {
    background-color: #007bff;
    color: #fff;
}

.similar {
    margin-top: 35px;
}

.similar .card-title {
    min-height: 80px;
}

.similar .card-text {
    min-height: 130px;
}

@media only screen and (max-width: 600px) {
    .content {
        padding: 2rem 1.5rem;
    }

    h1.content-title {
        font-size: 1.5rem
    }

    .content-img {
        height: 300px;
    }
}
