@import url('https://fonts.googleapis.com/css?family=Inconsolata|Merriweather');
body {
    font-family: 'Inconsolata', monospace;
    margin: 0;
}

.hero {
    height: 400px !important;
    text-align: center;
    background-color: #1b7bab;
}

.hero h1 {
    padding-top: 150px;
    color: #fff;
    font-size: 40px;
    font-weight: 900;
}

.custom-blog-box {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    background-color: #fff;
    transition: transform 0.2s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.custom-blog-box:hover {
    transform: translateY(-5px);
}

.custom-blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.custom-blog-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 10px;
    color: #1b7bab;
}

.custom-blog-desc {
    font-size: 0.95rem;
    margin: 10px 0;
}

.custom-blog-read {
    color: #1b7bab;
    text-decoration: none;
    font-weight: 500;
}

.custom-blog-read:hover {
    text-decoration: underline;
}

@media screen and (max-width: 500px) {
    .blog {
        height: 1500px!important;
    }
    .blog img {
        height: 400px;
    }
}