/*
Theme Name: Naturally Supernatural
Theme URI: https://www.naturallysupernatural.org
Author: Alcanza UX & UI
Author URI: https://www.alcanza.cl
Description: Tema personalizado para el sitio Naturalmente Sobrenatural.
Version: 1.0
*/

	body {
    	font-family: "Poppins", serif;
	}
	.home{
		height: 42rem;
	}
	.video-width{
		@media (max-width: 768px) {
			height: 100%;
		}
		@media (min-width: 769px) and (max-width: 1200px) {
			height: 100%;
		}
		@media (min-width: 1201px) {
			width: 100%;
		}
	}
	.card {
		display: flex;
		flex-direction: column;
		height: 100%;
		min-height: 350px;
	}
	.card-body {
		flex-grow: 1;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
    }
    .text-justify {
    	text-align: justify;
	}
    .author {
		filter: grayscale(100%);
		transition: filter 0.3s ease, box-shadow 0.3s ease;
	}
	.author:hover {
		filter: grayscale(0%);
	    box-shadow: 10px 10px 8px rgba(0, 0, 0, 0.2);
	}
	#logorotating {
		animation: rotateLogo 30s linear infinite;
    }
    @keyframes rotateLogo {
    	from {
        	transform: rotate(0deg);
        }
        to {
        	transform: rotate(360deg);
        }
    }

.custom-welcome-a {
						@media (max-width: 768px) {
							font-size: 1.5rem; /* Para tablets y dispositivos pequeños */
							margin-bottom: 0px;
						}

						@media (min-width: 769px) and (max-width: 1200px) {
							font-size: 2rem; /* Para dispositivos medianos */
							margin-bottom: 0px;
						}

						@media (min-width: 1201px) {
							font-size: 3rem; /* Para dispositivos grandes */
							margin-bottom: 0px;
						}
					}
					.custom-welcome-b {
						@media (max-width: 768px) {
							font-size: 3rem; /* Para tablets y dispositivos pequeños */
							margin-bottom: 0px;
						}

						@media (min-width: 769px) and (max-width: 1200px) {
							font-size: 5rem; /* Para dispositivos medianos */
							margin-bottom: 0px;
						}

						@media (min-width: 1201px) {
							font-size: 6rem; /* Para dispositivos grandes */
							margin-bottom: 0px;
						}
					}