*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    overflow-x: hidden;
}

body{
    background: #fff;
    margin-top: 80px;
    font-family: 'Cabin', sans-serif;
}

.articlePage {
    width: 90%;
    margin: 2rem auto;
    padding: 1rem;
    font-family: sans-serif;
}

.articlePage h1 {
    font-size: 3.5rem;
}

.articlePage .date {
    color: #888;
    margin-bottom: 1rem;
}

.articlePage .imageDetail {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    margin-bottom: 1rem;
    background-color: #f0f0f0;
}

.articlePage .description {
    font-size: 1.1rem;
    line-height: 1.6;
}

.redirectionArticleButton{
    position: fixed;
    margin-top: 2rem;
    right: 1rem;
    width: 150px;
    text-align: center;
    background-color: rgba(255, 49, 49, 0.9);
    padding:5px;
    border-radius: 5px;
    z-index: 1000;
}

.redirectionArticleButton:hover{
    background-color: rgba(255, 49, 49, 1);
}

.redirectionArticleButton a{
    text-decoration: none;
    color:white;
}

@media screen and (max-width: 736px) {
    .redirectionArticleButton{
        display: none;
    }
}
