body {
    margin: 0;
    background-color: #f2f7ff;
    font-family: 'Montserrat', sans-serif;
    color: black;
}

article {
    min-height: 100vh;
    margin: 0 auto;
}

h1, h2 {
    text-decoration: underline;
}

button {
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
}

a {
    cursor: pointer;
}

.logo {
    display: inline-block;   
    text-decoration: none;  
    color: white;
    font-weight: bold;  
    font-size: 25px; 
}

.logo:hover {
    transform: scale(1.05);
    text-decoration: underline;
}

header {
    background-color: navy;
    text-align: center;
    position: sticky;
    color: white;
    top: 0;  
    z-index: 1000;         
}

.learn-more {
    font-weight: bold;
    margin-top: 20px;
}

.learn-more p {
    margin-bottom: 5px;
    margin-top: 0;
}

.learn-more a {
    font-weight: normal;
    color: blue;
    text-decoration: none;
    display: inline-block;
}

.learn-more-two, .learn-more-three {
    margin-left: 133px;
}

.learn-more p a:hover {
    transform: scale(1.05) translateX(8px);
    text-decoration: underline;
}

.related-text {
    text-decoration: none;
    margin-bottom: 5px;
    color: navy;
    margin-top: 40px;
    border-bottom: 1px solid navy; 
}

.related-articles button {
    width: 100%;
    text-align: left;
    border: none;
    background-color: #f2f7ff;
    margin-bottom: 0;
    margin-top: 10px;
}

.related-articles button h3 {
    margin: 0;
    padding: 0;
    margin-bottom: 5px;
}

.related-articles button p {
    margin: 0;
    padding: 0;
    margin-bottom: 5px;
}

.read-more-one, .read-more-two, .read-more-three {
    color: blue;
}

.read-more-one, .read-more-two {
    border-bottom: 1px solid navy; 
}

.read-more-one span, .read-more-two span {
    margin-bottom: 15px;
}

.read-more-one span, .read-more-two span, .read-more-three span {
    display: inline-block;
}

.read-more-one span:hover, .read-more-two span:hover, .read-more-three span:hover {
    text-decoration: underline;
    cursor: pointer;
    transform: scale(1.05) translateX(2px);
}

.related-articles button h3:hover {
    color: blue;
    cursor: pointer;
    transform: scale(1.05) translateX(18px);
}

.recommended-text {
    text-decoration: none;
    margin-bottom: 5px;
    color: navy;
    margin-top: 40px;
    border-bottom: 1px solid navy; 
}

.under-recommended-text {
    height: 1px;
    border: none;
    background-color: navy;
    margin-top: 0;
}

.recommended-articles button {
    width: 100%;
    text-align: left;
    border: none;
    background-color: #f2f7ff;
    margin-bottom: 0;
    margin-top: 10px;
}

.recommended-articles button h3 {
    margin: 0;
    padding: 0;
    margin-bottom: 5px;
}

.recommended-articles button p {
    margin: 0;
    padding: 0;
    margin-bottom: 5px;
}

.recommended-articles button h3:hover {
    color: blue;
    cursor: pointer;
    transform: scale(1.05) translateX(18px);
}

.share-this-article-text {
    font-size: small;
    margin-right: 10px;
    margin-left: 15px;
}

.share-this-article i, .copy {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: grey;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-this-article i:hover {
    color: navy;
    transform: scale(1.15);
}

.share-this-article a {
    text-decoration: none;
    background: none;
    font-size: x-large;
    margin-right: 5px;
}

.copy { 
    background: none;
    border: none;
    font-size: 26px;
}

.copied {
    margin-top: 10px;
    font-size: small;
    color: black;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.copied.show {
    opacity: 1;
}

.share-this-article {
    display: flex;
    margin-top: 20px;
}

.sources {
    margin-top: 30px;
}

.sources details {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 15px;
    background: #f2f7ff;
    cursor: pointer;
}

.sources summary {
    font-weight: bold;
    list-style: none;
}

.sources summary::marker {
    display: none; 
}

summary::after {
    content: " ▼";
    font-size: 0.9rem;
    color: rgb(90, 89, 89);
    transition: transform 0.2s ease;
}

details[open] summary::after {
    content: " ▲";
}

.sources .sources-list {
    list-style-type: decimal;
    padding-left: 20px;
    margin-top: 10px;
}

.sources-list li {
    margin-bottom: 8px;
}

.sources-list a {
    color: blue;
    text-decoration: none;
}

.sources-list a:hover {
    text-decoration: underline;
}

.how-we-reviewed .actual-name {
    color: grey;
    font-size: small;
}

.how-we-reviewed h3 {
    margin-bottom: 10px;
    margin-top: 25px;
}

.how-we-reviewed-notes {
    margin-top: 0;
}

.how-we-reviewed div {
    line-height: 0.75;
    margin-left: 20px;
}

.how-we-reviewed .written-by {
    margin-bottom: 30px;
    margin-top: 30px;
}

footer {
    background-color: navy;
    padding-top: 0.1px;
    padding-bottom: 10px;
    margin-top: 40px;

}

.follow-us-on-logo { 
    text-decoration: none;  
    color: white;
    font-weight: bold; 
    font-size: 20px; 
}

.follow-us-on-logo:hover {
    transform: scale(1.05);
    text-decoration: underline;
}

.follow-us-on-text {
    display: flex;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.follow-us-on-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    text-decoration: none;
    cursor: pointer;
    background: none;
    color: white;
    transition: all 0.3s ease;
}

.follow-us-on-icons a:hover {
    color: #1da1f2;
    transform: scale(1.15);
}

.follow-us-on-icons .instagram { 
    font-size: 40px;
}       
.follow-us-on-icons .facebook { 
    font-size: 35px;
}
.follow-us-on-icons .twitter { 
    font-size: 38px;
}
.follow-us-on-icons .whatsapp { 
    font-size: 40px;
}
.follow-us-on-icons .tiktok { 
    font-size: 40px;
} 
.follow-us-on-icons .pinterest { 
    font-size: 40px;
} 
.follow-us-on-icons .reddit { 
    font-size: 40px;
} 

.follow-us-on-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.line-separator {
    height: 0.5px;
    border: none;
    background-color: white;
    margin-left: 2.5%;
    margin-right: 2.5%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.footer-logo {
    text-decoration: none;  
    color: white;
    font-weight: bold; 
    font-size: 25px;   
}

.footer-logo:hover {
    transform: scale(1.05);
    text-decoration: underline;
}

.bottom-of-the-page {
    display: flex;
    justify-content: space-around;
}

.advertise-and-contact a {
    text-decoration: none;
    color: white;
    display: block;
}

.advertise-and-contact a:hover {
    transform: scale(1.05) translateX(2.5px);
    text-decoration: underline;
}

.advertise-with-us {
    margin-bottom: 10px;
    margin-top: 10px;
}

@media screen and (min-width: 991px) {
    header {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    article {
        padding-top: 10px;
        width: 60%;
    }
    .footer-logo {
        margin-top: 25px;  
    }
}

@media screen and (max-width: 990px) {
    header {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    article {
        padding-top: 10px;
        width: 90%;
    }
    .footer-logo {
        margin-top: 20px;  
    }
    .share-this-article-text {
        margin-right: 5px;
        margin-left: 20px;
    }
    .share-this-article .email { 
        margin-right: 5px;
    }       
    .share-this-article .facebook { 
        margin-right: 5px;
    }
    .share-this-article .twitter { 
        margin-right: 5px;
    }
    .share-this-article .whatsapp { 
        margin-right: 5px;
    }
    .copy { 
        margin-right: 5px;
    }
}
