* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #080808;
    color: white;
    font-family: Arial, sans-serif;
}


header {
    height: 60px;
    background-color: black;
    color: white;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    padding: 0 50px;

    position: relative;
    z-index: 2;
}

p {
    font-size: 14px;
}

nav {
    text-align: right;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    font-size: 14px;
}

nav span {
    color: white;
    margin-left: 30px;
    font-size: 14px;
}


.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    left: 62px;
    bottom: 62px;
}

.hero-text h1 {
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: normal;
    line-height: 1.15;
    margin: 0 0 12px 0;
}

.hero-text p {
    font-size: 10px;
    margin: 0;
}


.world {
    width: 82%;
    max-width: 610px;
    margin: 0 auto;
    padding-top: 55px;
}


.world-title {
    display: flex;
    justify-content: space-between;
    padding-bottom: 28px;
    border-bottom: 1px solid #555;
}

.world-title h2 {
    font-size: 25px;
    line-height: 1.4;
    margin: 0;
}

.world-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 3px;
}

.world-links a {
    color: white;
    text-decoration: none;
    font-size: 12px;
}


.remains {
    padding-top: 30px;
}

.remains > h2 {
    font-size: 25px;
    margin: 0 0 20px 0;
}

.remains-card {
    height: 200px;

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;

    background-color: #8d6b3d;
}

.card-text {
    padding: 20px 22px;

    display: flex;
    flex-direction: column;
}

.card-text small {
    font-size: 7px;
}

.card-text h3 {
    font-size: 16px;
    font-weight: normal;
    text-decoration: underline;

    margin: 13px 0 0 0;
}

.card-bottom {
    margin-top: auto;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-bottom p {
    font-size: 7px;
    margin: 3px 0;
}

.card-bottom a {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    background-color: #080808;
    color: white;

    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;
    font-size: 7px;
}

.remains-card > img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}


.explore {
    margin-top: 75px;
    padding-top: 30px;
    border-top: 1px solid #444;
}

.explore-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.explore-title h2 {
    font-size: 25px;
    margin: 0;
}

.explore-title a {
    color: white;
    text-decoration: none;
    font-size: 10px;
}

.explore-cards {
    margin-top: 22px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.explore-cards article {
    height: 260px;
    position: relative;
    overflow: hidden;

    background-color: #222;
}

.explore-cards article img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.explore-cards article div {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    padding: 15px;

    display: flex;
    flex-direction: column;
}

.explore-cards small {
    font-size: 9px;
}

.explore-cards p {
    margin-top: auto;
    margin-bottom: 15px;
    font-size: 10px;
}

.explore-cards article a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #8d6b3d;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 7px;
}

footer {
    width: 82%;
    max-width: 610px;

    margin: 70px auto 0;
    padding: 35px 0 45px;

    border-top: 1px solid #444;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

    position: relative;
}

footer h4 {
    font-size: 8px;
    margin: 0 0 18px 0;
}

footer p {
    font-size: 7px;
    margin: 7px 0;
}

.copyright {
    position: absolute;
    left: 0;
    bottom: 0;
}



@media (max-width: 700px) {

    header {
        padding: 0 20px;
    }

    .world {
        width: 88%;
    }

    .remains-card {
        grid-template-columns: 1fr;
        height: auto;
    }

    .card-text {
        height: 200px;
    }

    .remains-card > img {
        height: 220px;
    }

    .explore-cards {
        grid-template-columns: 1fr;
    }

    footer {
        width: 88%;
    }
}
@media (max-width: 700px) {

    header {
        padding: 0 20px;
    }

    .world {
        width: 88%;
    }

    .world-title {
        display: block;
    }

    .world-links {
        margin-top: 20px;
    }

    .remains-card {
        grid-template-columns: 1fr;
        height: auto;
    }

    .card-text {
        height: 200px;
    }

    .remains-card > img {
        height: 220px;
    }

    .explore-cards {
        grid-template-columns: 1fr;
    }

    footer {
        width: 88%;
    }
}
body {
    margin: 0;
    background-color: white;
    color: #111;
    font-family: Arial, sans-serif;
}


/* header */

.header {
    height: 60px;
    background-color: black;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 50px;
}

.logo {
    font-size: 14px;
}

.header nav {
    text-align: right;
}

.header nav a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    font-size: 14px;
}

.header nav span {
    color: white;
    margin-left: 30px;
    font-size: 14px;
}


/* hero */

.tomb-hero {
    width: 100%;
    height: 55vh;
    position: relative;
}

.tomb-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tomb-title {
    position: absolute;
    left: 7%;
    bottom: 25px;
    color: white;
}

.tomb-title h1 {
    font-size: 32px;
    line-height: 1.5;
    margin: 0;
}


/* breadcrumb */

.breadcrumb {
    width: 82%;
    margin: 20px auto;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
    font-size: 11px;
    font-weight: bold;
}


/* share */

.share {
    width: 82%;
    margin: -65px auto 35px;
    text-align: right;
    font-size: 16px;
    font-weight: bold;
}


/* on this page */

.on-page {
    width: 78%;
    margin: 0 auto 45px;
    padding: 18px;
    background-color: #eee;
}

.on-page h3 {
    margin: 0 0 15px 0;
    font-size: 15px;
}

.on-page a {
    color: #111;
    text-decoration: none;
    margin-right: 30px;
    font-size: 12px;
    font-weight: bold;
}


/* tomb information */

.tomb-info {
    width: 82%;
    margin: 0 auto;
    padding-bottom: 55px;
    border-bottom: 1px solid #ddd;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.tomb-info h2 {
    font-size: 22px;
    line-height: 1.4;
    margin: 0 0 30px 0;
}

.tomb-info p {
    font-size: 12px;
    line-height: 1.7;
    font-weight: bold;
    margin: 0;
}

.about-tomb h3 {
    font-size: 22px;
    margin: 0 0 35px 0;
}

.about-tomb p {
    font-size: 11px;
    line-height: 1.7;
    margin: 0 0 22px 0;
}

.about-tomb a {
    display: block;
    background-color: black;
    color: white;
    text-decoration: none;
    padding: 17px;
    margin-top: 25px;
    font-size: 15px;
    font-weight: bold;
}


/* inside */

.inside {
    width: 82%;
    margin: 65px auto 80px;
}

.inside h2 {
    font-size: 35px;
    margin: 0 0 20px 0;
}


/* cards */

.inside-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.inside-cards article {
    background-color: #eee;
}

.inside-cards article img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.inside-cards article div {
    padding: 18px;
}

.inside-cards article h3 {
    font-size: 16px;
    line-height: 1.4;
    margin: 0 0 25px 0;
}

.inside-cards article p {
    font-size: 10px;
    line-height: 1.6;
    font-weight: bold;
    margin: 0;
}


/* footer */

footer {
    width: 82%;
    margin: 0 auto 50px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

footer p {
    font-size: 10px;
}


/* mobile */

@media (max-width: 700px) {

    .header {
        padding: 0 20px;
    }

    .header nav a {
        margin-left: 10px;
    }

    .header nav span {
        margin-left: 10px;
    }

    .tomb-hero {
        height: 50vh;
    }

    .tomb-title {
        left: 25px;
        bottom: 20px;
    }

    .tomb-title h1 {
        font-size: 25px;
    }

    .breadcrumb {
        width: 88%;
    }

    .share {
        width: 88%;
        margin: -55px auto 30px;
    }

    .on-page {
        width: 84%;
    }

    .on-page a {
        margin-right: 15px;
    }

    .tomb-info {
        width: 88%;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .inside {
        width: 88%;
    }

    .inside-cards {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .inside-cards article img {
        height: 150px;
    }

    footer {
        width: 88%;
    }
}
page3
.life-page {
    background-color: white;
    color: #111;
}


.life-page .header {
    height: 60px;
    background-color: black;
    color: white;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    padding: 0 50px;
}

.life-page .logo {
    font-size: 14px;
}

.life-page nav {
    text-align: right;
}

.life-page nav a {
    color: white;
    text-decoration: none;

    margin-left: 30px;

    font-size: 14px;
}

.life-page nav span {
    margin-left: 30px;
    font-size: 14px;
}


.life {
    width: 82%;
    max-width: 610px;

    margin: 0 auto;
}


.life-intro {
    padding-top: 25px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 60px;
}

.life-intro h1 {
    font-size: 28px;
    margin: 0;
}

.intro-text p {
    font-size: 9px;
    line-height: 1.5;

    margin: 45px 0 0 0;
}

.intro-line {
    font-size: 11px;
    font-weight: bold;

    margin: 120px 0 0 0;
    padding-bottom: 20px;

    border-bottom: 1px solid #ddd;
}


.life-section {
    margin-top: 45px;
}

.life-section h2 {
    font-size: 25px;

    margin: 0 0 18px 0;
}


.life-card {
    height: 155px;

    background-color: #ddd;

    display: grid;

    grid-template-columns: 1fr 1fr;

    position: relative;
}


.card-content {
    padding: 18px;

    display: flex;
    flex-direction: column;
}

.card-content small {
    font-size: 8px;
    font-weight: bold;
}

.card-content h3 {
    font-size: 12px;

    text-decoration: underline;

    margin: 5px 0 0 0;
}

.card-content p {
    width: 150px;

    font-size: 7px;
    line-height: 1.5;

    margin-top: auto;
}


.life-card img {
    width: 100%;
    height: 155px;

    object-fit: cover;
}
.card-content a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: black;
    color: white;
    text-decoration: none;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 6px;

    position: absolute;
    right: 20px;
    bottom: 15px;
}

.description {
    width: 48%;

    margin-top: 15px;
}

.description p {
    font-size: 8px;
    line-height: 1.6;

    margin: 0;
}

.right-description {
    margin-left: auto;
}


@media (max-width: 700px) {

    .life-page .header {
        padding: 0 20px;
    }

    .life-page nav a {
        margin-left: 10px;
    }

    .life-page nav span {
        margin-left: 10px;
    }

    .life {
        width: 88%;
    }

    .life-intro {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .intro-text p {
        margin-top: 0;
    }

    .intro-line {
        margin-top: 60px;
    }

    .life-card {
        grid-template-columns: 1fr;
        height: auto;
    }

    .life-card img {
        height: 200px;
    }

    .description {
        width: 100%;
    }

    .right-description {
        margin-left: 0;
    }

}
page4

/* Page 4 */

.objects-page {
    background-color: white;
    color: black;
}


/* header */

.objects-page .header {
    height: 60px;
    background-color: black;
    color: white;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    padding: 0 50px;
}

.objects-page .logo {
    font-size: 14px;
}

.objects-page nav {
    text-align: right;
}

.objects-page nav a {
    color: white;
    text-decoration: none;

    margin-left: 30px;
    font-size: 14px;
}

.objects-page nav span {
    margin-left: 30px;
}


/* 第一部分 */

.object-top {
    margin: 20px 5% 0;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 50px;

    height: 430px;
}

.object-text {
    padding-top: 0;
}

.object-text h1 {
    font-size: 30px;
    margin: 0 0 15px 0;
}

.object-text h2 {
    font-size: 16px;
    text-decoration: underline;

    margin: 0 0 40px 0;
}

.object-text h3 {
    font-size: 16px;
    margin: 0 0 5px 0;
}

.object-text p {
    width: 250px;

    font-size: 10px;
    line-height: 1.5;

    margin: 0 0 25px 0;
}

.object-text a {
    display: block;

    width: 260px;

    background-color: black;
    color: white;

    text-decoration: none;

    padding: 15px;

    font-size: 14px;
    font-weight: bold;
}

.object-top > img {
    width: 100%;
    height: 220px;

    object-fit: cover;
}


/* 第二部分 */

.gown-section {
    margin-top: 20px;
}

.gown-image {
    width: 100%;
    height: 500px;

    position: relative;
}

.gown-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.gown-image h2 {
    position: absolute;

    left: 8%;
    bottom: 30px;

    margin: 0;

    font-size: 28px;
}


/* 衣服介绍 */

.gown-text {
    width: 82%;

    margin: 0 auto;

    padding: 30px 0 150px;
}

.gown-text h2 {
    font-size: 24px;

    margin: 0 0 25px 0;
}

.gown-text p {
    width: 300px;

    font-size: 10px;
    line-height: 1.6;

    margin: 0 0 30px 0;
}

.gown-text hr {
    border: 0;
    border-top: 1px solid #ddd;

    margin-bottom: 20px;
}

.gown-text h3 {
    font-size: 14px;
    margin: 0;
}


/* Material */

.material-info {
    margin-top: 35px;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;

    gap: 30px;
}

.material-info small {
    font-size: 8px;
    font-weight: bold;
}

.material-info p {
    width: auto;

    font-size: 13px;

    margin-top: 8px;
}

.material-text {
    margin-top: 40px !important;

    width: 500px !important;

    font-size: 11px !important;
}


/* 49 grams */

.weightless {
    width: 82%;

    margin: 0 auto;

    padding: 100px 0;

    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 80px;
}

.weightless-text small {
    font-size: 8px;
    font-weight: bold;
}

.weightless-text h2 {
    font-size: 30px;

    line-height: 1.2;

    margin: 15px 0 30px 0;
}

.weightless-text p {
    width: 320px;

    font-size: 11px;

    line-height: 1.7;

    margin-bottom: 20px;
}

.weightless-number {
    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;
}

.weightless-number p {
    font-size: 130px;

    font-weight: bold;

    line-height: 1;

    margin: 0;
}

.weightless-number span {
    font-size: 10px;
    font-weight: bold;
}


/* More than an object */

.world-object {
    margin-top: 100px;
}

.world-object-image {
    width: 100%;
    height: 500px;

    position: relative;
}

.world-object-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.world-object-image h2 {
    position: absolute;

    left: 8%;
    bottom: 30px;

    margin: 0;

    color: white;

    font-size: 30px;
}

.world-object-text {
    width: 82%;

    margin: 0 auto;

    padding: 50px 0 150px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 80px;
}

.world-object-text h2 {
    font-size: 25px;

    margin: 0;
}

.world-object-text p {
    width: 320px;

    font-size: 11px;

    line-height: 1.7;

    margin: 0 0 20px 0;
}


/* 最后 */

.final-section {
    width: 82%;

    margin: 0 auto;

    padding: 60px 0 100px;

    border-top: 1px solid #ddd;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 60px;
}

.final-section h2 {
    font-size: 25px;

    margin: 0 0 20px 0;
}

.final-section p {
    width: 300px;

    font-size: 10px;

    line-height: 1.6;
}

.final-section a {
    display: block;

    height: 55px;

    background-color: black;
    color: white;

    text-decoration: none;

    text-align: center;

    padding-top: 18px;

    font-size: 14px;

    font-weight: bold;
}


/* footer */

.objects-page footer {
    width: 82%;

    margin: 0 auto;

    padding: 30px 0;

    border-top: 1px solid #ddd;
}

.objects-page footer p {
    font-size: 8px;
}


/* 手机端 */

@media (max-width: 700px) {

    .objects-page .header {
        padding: 0 20px;
    }

    .objects-page nav a {
        margin-left: 10px;
    }

    .objects-page nav span {
        margin-left: 10px;
    }


    .object-top {
        grid-template-columns: 1fr;

        height: auto;

        margin: 20px 6% 80px;
    }

    .object-top > img {
        height: 300px;
    }


    .gown-image {
        height: 350px;
    }

    .gown-image h2 {
        left: 6%;

        font-size: 22px;
    }


    .gown-text {
        width: 88%;

        padding-bottom: 100px;
    }

    .material-info {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .material-text {
        width: 100% !important;
    }


    .weightless {
        width: 88%;

        grid-template-columns: 1fr;

        gap: 40px;

        padding: 70px 0;
    }

    .weightless-text p {
        width: 100%;
    }

    .weightless-number p {
        font-size: 100px;
    }


    .world-object {
        margin-top: 70px;
    }

    .world-object-image {
        height: 350px;
    }

    .world-object-image h2 {
        left: 6%;

        font-size: 22px;
    }

    .world-object-text {
        width: 88%;

        grid-template-columns: 1fr;

        gap: 30px;

        padding-bottom: 100px;
    }

    .world-object-text p {
        width: 100%;
    }


    .final-section {
        width: 88%;

        grid-template-columns: 1fr;

        gap: 30px;

        padding-bottom: 80px;
    }

    .final-section p {
        width: 100%;
    }

}
@import url('https://fonts.font.im/css?family=Ruslan+Display+Pro');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    background-color: #080808;
    color: #eeeeee;
    font-family: Arial, sans-serif;
}


/* =========================
   HEADER
========================= */

header {

    height: 60px;

    padding: 0 50px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    border-bottom: 1px solid #444444;
}


.logo {

    font-size: 16px;

    letter-spacing: 2px;
}


nav {

    display: flex;

    gap: 40px;
}


nav a {

    color: #eeeeee;

    text-decoration: none;

    font-size: 11px;

    letter-spacing: 1px;
}


nav a:hover {

    color: #cccccc;

    transition: 0.3s;
}


/* =========================
   INTRO
========================= */

.intro {

    width: 90%;

    margin: 0 auto;

    padding: 90px 0 70px;

    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 40px;

    border-bottom: 1px solid #444444;
}


.intro-title p {

    font-size: 11px;

    letter-spacing: 2px;

    margin-bottom: 25px;

    color: #999999;
}


.intro-title h1 {

    font-family: 'Ruslan Display Pro';

    font-size: 100px;

    line-height: 0.85;

    font-weight: normal;

    letter-spacing: 2px;
}


.intro-text {

    padding-top: 35px;

    border-left: 1px solid #444444;

    padding-left: 30px;
}


.intro-text p {

    font-family: Georgia, serif;

    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 25px;

    color: #bbbbbb;
}


/* =========================
   BANNER
========================= */

.banner-section {

    width: 90%;

    margin: 0 auto;

    padding: 70px 0;

    display: grid;

    grid-template-columns: 3fr 1fr;

    gap: 30px;
}


.banner-image {

    height: 620px;

    overflow: hidden;
}


.banner-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;
}


.banner-info {

    border-top: 1px solid #eeeeee;

    padding-top: 15px;
}


.banner-info p {

    font-size: 10px;

    color: #999999;

    letter-spacing: 1px;

    line-height: 1.6;

    margin-bottom: 20px;
}


.banner-info h2 {

    font-family: 'Ruslan Display Pro';

    font-size: 38px;

    line-height: 0.95;

    font-weight: normal;

    margin-bottom: 30px;
}


/* =========================
   OBJECTS
========================= */

.objects {

    width: 90%;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 1px;

    background-color: #444444;

    border-top: 1px solid #444444;

    border-bottom: 1px solid #444444;
}


.object {

    background-color: #080808;

    padding: 30px;

    min-height: 480px;
}


.object img {

    width: 100%;

    height: 270px;

    object-fit: cover;

    margin-bottom: 25px;
}


.object-text p:first-child {

    font-size: 10px;

    color: #888888;

    letter-spacing: 2px;

    margin-bottom: 12px;
}


.object-text h2 {

    font-family: 'Ruslan Display Pro';

    font-size: 38px;

    font-weight: normal;

    line-height: 0.95;

    margin-bottom: 20px;
}


.object-text p:last-child {

    font-family: Georgia, serif;

    color: #aaaaaa;

    font-size: 12px;

    line-height: 1.6;

    max-width: 330px;
}


/* =========================
   最后一个
========================= */

.last-object {

    display: flex;

    flex-direction: column;

    justify-content: space-between;
}


.number {

    font-size: 90px;

    letter-spacing: -5px;

    color: #eeeeee;
}


/* =========================
   ENDING
========================= */

.ending {

    width: 90%;

    margin: 0 auto;

    padding: 100px 0;

    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 40px;
}


.ending p {

    font-size: 10px;

    color: #888888;

    letter-spacing: 2px;

    margin-bottom: 20px;
}


.ending h2 {

    font-family: 'Ruslan Display Pro';

    font-size: 65px;

    font-weight: normal;

    line-height: 0.9;
}


.ending-right {

    padding-top: 15px;

    border-top: 1px solid #444444;
}


.ending-right p:last-child {

    font-family: Georgia, serif;

    font-size: 14px;

    line-height: 1.6;

    color: #aaaaaa;

    letter-spacing: 0;
}
@media screen and (max-width: 768px) {

    header {
        height: 60px;
        padding: 0 20px;
    }

    nav {
        gap: 15px;
    }

    nav a {
        font-size: 9px;
    }

    .intro {
        width: 90%;
        padding: 60px 0 50px;
        display: block;
    }

    .intro-title h1 {
        font-size: 60px;
        margin-bottom: 50px;
    }

    .intro-text {
        padding-top: 20px;
        padding-left: 20px;
    }

    .intro-text p {
        font-size: 13px;
    }

    .banner-section {
        width: 90%;
        padding: 50px 0;
        display: block;
    }

    .banner-image {
        height: 400px;
        margin-bottom: 30px;
    }

    .banner-info h2 {
        font-size: 32px;
    }

    .objects {
        width: 90%;
        display: block;
    }

    .object {
        padding: 25px;
        min-height: auto;
    }

    .object img {
        height: 250px;
    }

    .object-text h2 {
        font-size: 32px;
    }

    .number {
        font-size: 70px;
        margin-bottom: 60px;
    }

    .ending {
        width: 90%;
        padding: 70px 0;
        display: block;
    }

    .ending h2 {
        font-size: 50px;
        margin-bottom: 50px;
    }

    .ending-right {
        padding-top: 20px;
    }

}