@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@200;900&display=swap');

body, html {
    font-family: 'Merriweather', serif;
    margin: auto;
    width: 80%;
 }

/* Styling the top heading*/
.heading {
    font-size: x-large;
    font-family: 'Heebo';
    align-items: center;
}

.heading h1 {
    align-items: center;
}

/* About author under heading */
.author {
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: medium;
    align-items: center;
    margin-left: 15px;
    padding-bottom: 0;
}

.hr {
    color: gray;
}

.blog-info{
    color: gray;
    font-size: smaller;
    align-items: center;
    padding-top: 5px;
}

/* Content styling */
.content {
    margin: 5px;
    font-size: 18px;
    padding: 20px;
    letter-spacing: 0.5px;
    line-height: 28px;
}

.subheading {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: default;
    align-items: center;
    font-family: 'Heebo', normal;
}

.short-pause {
    border-top: 10px dotted;
    margin-top: 50px;
    margin-bottom: 50px;
    width: 8%;
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
}

/* Social icons styles */
.social-icons {
    display: flex;
    justify-content: center;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    background-color: #333;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-in-out;
    bottom: 0;
    margin: 0 10px;
}

.social-icon:hover {
    transform: translateY(-10px);
}

.social-icon img {
    width: 25px;
    height: 25px;
}


.footer p {
    display: flex;
    justify-content: center;
    padding: 10px;
    opacity: 75%;
}

/*Responsive Code Here*/

/*Tablet*/
@media screen and (max-width:850px) {
    body, html {
        width: 99%;
    }

    .heading {
        font-size: 20px;
        margin: 15px;
    }
    .subheading {
        font-size: 25px;
    }

    .content {
        font-size: 16px;
    }

    .footer p {
        font-size: 12px;
        margin-top: 8px;
    }

}

@media (max-width: 767px) {
    body, html {
        width: 99%;
    }

    .subheading {
        font-size: 25px;
    }

    .heading {
        font-size: 20px;
        margin: 15px;
    }

    .content {
        font-size: 16px;
    }

    .footer p {
        font-size: 12px;
        margin-top: 8px;
    }

}

@media screen  and (max-width:450px) {
    body, html {
        width: 99%;
    }

    .heading {
        font-size: 20px;
        margin: 15px;
    }
    .subheading {
        font-size: 25px;
    }

    .content {
        font-size: 16px;
    }

    .footer p {
        font-size: 12px;
        margin-top: 8px;
    }

}