/*Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@500&family=Patrick+Hand&display=swap');

.Title{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background-color: #A2ADBC;
    border-radius: 20px;
    width: fit-content;
    font-family: 'Patrick Hand', cursive;
    font-size: 40px;
    text-align: center;
}

.blog-img{
    width: 150px;
    height: 150px;
}

.blogtext{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Kanit', sans-serif;
    background-color: #A2ADBC;
    width: 70%;
    height: 55%;
    text-align: center;
    border-radius: 20px;
    font-size:  30px;
    word-break: normal;
}

.home-button{
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #636b777e;
    size: 30px;
    font-size: 20px;
    border-radius: 15px;
}

body, html{
    background-color: #1a1a1a;
    background-size: 100%;
    margin: 0;
    padding: 0;
}

@media only screen and (max-width: 1200px) {
    .Title{
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        background-color: #A2ADBC;
        border-radius: 20px;
        width: fit-content;
        font-family: 'Patrick Hand', cursive;
        font-size: 35px;
        text-align: center;
    }
    
    .blogtext{
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        font-family: 'Kanit', sans-serif;
        background-color: #A2ADBC;
        width: 80%;
        height: 55%;
        text-align: center;
        border-radius: 20px;
        font-size:  30px;
        word-break: normal;
    }


}