body, p {
    color: #2C3E50;
    font-family: "Lora", serif;
    font-size: 16pt;
    line-height: 1.6;
}


h1 {
    color: #2C3E50;
    font-family: "Georgia", serif;
    font-size: 56px;
    font-weight: 700;
    text-align: center;

    opacity: 0;
    transition: opacity 1.5s ease-in;
}

h1.fade-in {
    opacity: 1;
}

h2, h3, h4, h5, h6 {
    color: #2C3E50;
    font-family: "Lora", serif;
    font-size: 32px;
    font-weight: 700;
    text-align: left;
    margin-top: 50px;
    margin-bottom: 10px;
}


.container {
    background-color: lightblue;
    position: relative;
    padding: 20px;
}


.image-row {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.image-row a {
    display: block;
}


.image-box {
    width: 300px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
}

.image-box img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: cover;
}


.image-box-with-text {
    text-align: center;
    width: 300px;
    display: inline-block;
    background-color: transparent;
    transition: background-color 0.3s;
    padding: 5px;
}

.image-box-with-text:hover {
    background-color: hotpink;
}

.image-box-with-text img {
    width: 100%;
    height: auto;
}

.image-box-with-text h3 {
    margin-top: 10px;
    font-size: 24px;
    text-align: center !important;
}


.container a {
    display: table;
    margin-top: 10px;
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: background 0.3s;
    padding: 2px 4px;
    border-radius: 3px;
}

.container a:hover {
    background-color: #f0f0f0;
    cursor: pointer;
}


.page2 .image-row {
    justify-content: flex-start;
    gap: 20px;
}

.page2 .image-row img {
    width: 30%;
    height: auto;
}


.page3 h1 {
    font-family: "Georgia", serif;
    font-size: 56px;
    font-weight: 700;
    text-align: center;
}

.page3 h3 {
    font-family: "Georgia", serif;
    font-size: 28pt;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 10px;
    text-align: left;
}

.page3 p {
    font-family: "Lora", serif;
    font-size: 16pt;
    line-height: 1.6;
}


.page3 .image-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.page3 .image-row img {
    width: 300px;
    height: 250px;
    object-fit: cover;
}


.fade-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.fade-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


.tip-btn {
    padding: 6px 12px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    background-color: hotpink;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

.tip-btn:hover {
    background-color: deeppink;
}


.tip-message {
    margin-top: 5px;
    font-style: italic;
    color: #2C3E50;
    background-color: #f0f0f0;
    padding: 6px 10px;
    border-radius: 5px;
    display: inline-block;
}
