.viewblog-container {
    width: 100%;
    margin: 0 auto;
    padding: 5rem 8.5rem;
}

.viewblog-title {
    font-family: "Oswald", sans-serif;
    font-size: 200%;
    font-weight: 600;
    color: rgba(255, 193, 26, 1);
    margin-bottom: 2%;
}

.viewblog-subtitle {
    font-family: "Carlito", sans-serif;
    font-size: 105%;
    font-weight: 400;
    color: rgba(140, 143, 147, 1);
    margin-bottom: 2%;
}

.viewblog-content {
    font-family: "Carlito", sans-serif;
    font-size: 105%;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(0, 0, 0, 1);
    text-align: justify;
    margin-bottom: 3%;
}

.viewblog-button {
    font-family: "Oswald", sans-serif;
    font-size: 105%;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 193, 26, 1);
    padding: 0.5% 2%;
    border-radius: 5vh;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.viewblog-button:hover {
    background-color: rgba(0, 0, 0, 1);
}



@media (max-width: 768px) {
    .viewblog-container {
        padding: 2rem 1rem;
    }

    .viewblog-title {
        font-size: 140%;
        text-align: center;
    }

    .viewblog-subtitle {
        font-size: 100%;
        text-align: center;
    }

    .viewblog-content {
        font-size: 100%;
        margin-bottom: 2%;
        text-align: left;
    }

    .viewblog-button {
        width: 100%;
        padding: 1rem 0;
        font-size: 110%;
        border-radius: 2vh;
        display: block;
        margin: 0 auto;
        text-align: center;
    }
}