body {
    margin: 0;
    padding: 40px;
    font-family: "Adobe Jenson Pro", Georgia, serif;
    background-color: #1C1000;
    color: #fff;
}

.page-main {
    overflow: hidden;
}

.back-button {
    position: fixed;
    top: 60px;
    left: 100px;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 5px;
}

.back-button:hover {
    opacity: 0.5;
}

.container {
    max-width: 800px;
    margin: 60px auto 0 auto;
    text-align: center;
}

.breathing {
    font-size: 24px;
    line-height: 2.2;
    animation: breathe 10s ease-in-out infinite;
}

@keyframes breathe {
    0% {
        font-size: 5x;
    }

    50% {
        font-size: 10px;
    }

    100% {
        font-size: 24px;
    }
}

.navigation {
    position: fixed;
    bottom: 40px;
    left: 110px;
    display: flex;
    gap: 20px;
}

.nav-button {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 5px;
}

.nav-button:hover {
    opacity: 0.5;
}