.top-nav-title{
    margin: auto;
}

nav .logo {
    height: 200px;
}

.headers > *{
    text-align: center;
}

.headers h2{
    font-size: 2rem;
}

body{
    background-color: white;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, 380px);
    align-items: stretch;
    justify-content: space-evenly;
    align-content: center;
    gap: 20px;
    row-gap: 50px;
    margin: 50px 0;
}

.stage-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.stage-card {
    cursor: pointer;
    position: relative;
    min-width: 200px;
    max-width: 800px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 0.4rem;
    box-shadow: 0 7px 14px 0 #1d517fc2, 0 3px 6px 0 #59b1ffc2;
    border: 5px solid #ffffff;
    transition: transform 0.15s ease, border-color 0.15s ease;
    height: 100%;
}

.stage-card:hover {
    transform: translateY(-4px);
    border: 5px solid var(--color1);
}

.stage-card > img{
    width: 100%;
    height: 212px;
    object-fit: cover;
    border-radius: 0.3rem;
    background: #eef4fa;
}

.details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 1rem;
    gap: 0.5rem;
}

p.title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

p.subtitle {
    color: #566;
    font-size: 1.1rem;
    min-height: 2.6rem;
}

.info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

span.price {
    font-weight: 700;
    color: var(--color1);
}

.book-btn {
    padding: 0.5rem 1.2rem;
    background: var(--color1);
    color: #fff;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
}

@media only screen and (max-width: 600px){
    .products {
        grid-template-columns: repeat(auto-fill, 90%);
    }
    p.title {
        font-size: 1.6rem;
    }
}
