@import "./common.css";

.title {
    color: var(--primary-color);
    font-size: 30px;
    text-align: center;
    font-weight: bold;
}

.time {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.content {
    margin-top: 50px;
    transition: font-size 0.2s ease;
}

.time span.font-size-btn {
    cursor: pointer;
    margin: 0 2px;
    text-decoration: none;
    border-bottom: 1px dashed #999;
}
.time span.font-size-btn:hover {
    color: var(--focus-color);
    border-bottom-color: var(--focus-color);;
}

@media (max-width: 767px) {
    .time {
        flex-direction: column;
    }
    .time span {
        display: flex;
        justify-content: center;
    }
    .content p {
        padding: 0 8px;
        text-align: center;
    }
}
