@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700&display=swap');

.price-story {
    width: 1080px;
    height: 1920px;
    padding: 60px 40px;
    box-sizing: border-box;
    background: linear-gradient(135deg, hsl(210,30%,95%), hsl(210,30%,85%));
    font-family: 'Outfit', sans-serif;
    color: hsl(210,20%,15%);
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Brand */
.ps-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}
.ps-logo {
    width: 120px;
    height: auto;
    margin-bottom: 12px;
}
.ps-place-name {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(45deg, hsl(210,100%,40%), hsl(260,80%,45%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ps-header .ps-period {
    font-size: 24px;
    color: hsl(210,15%,35%);
    margin-top: 8px;
}

/* Table */
.ps-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
    margin-top: 20px;
}
.ps-table th,
.ps-table td {
    text-align: left;
    font-size: 28px;
    padding: 12px 20px;
}
.ps-table th {
    font-weight: 600;
    color: hsl(210,20%,30%);
}
.ps-table td {
    background: rgba(255,255,255,.8);
    border-radius: 12px;
}

/* Footer */
.ps-footer {
    margin-top: auto;
    width: 100%;
    text-align: center;
    font-size: 20px;
    color: hsl(210,15%,45%);
    padding-top: 24px;
}

.price-story:hover {
    transform: translateY(-4px);
    transition: transform .3s ease;
}
