@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

@font-face {
    font-family: 'Century Gothic';
    src: url('/public/fonts/century-gothic/Century-Gothic.ttf') format('truetype');
    /* Otras propiedades según sea necesario, como font-weight, font-style, etc. */
    font-weight: normal;
    font-style: normal;
    font-display: block;

}

@font-face {
    font-family: 'adeliaregular';
    src: url('/public/fonts/amelia/adelia-webfont.woff2') format('woff2'),
        url('/public/fonts/amelia/adelia-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}



@layer base {
    html {
        font-family: 'Century Gothic', sans-serif !important;
    }
}

h1 {
    /* font-family: 'Dancing Script', cursive; */

    font-family: 'Century Gothic', sans-serif !important;
}

@media (min-width: 1280px) {
    p {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
}

@media (min-width: 1536px) {
    h1 {
        font-size: 3rem;
        line-height: 1;
    }

    p {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

}

body {

    font-family: 'Century Gothic', sans-serif !important;
    font-size: 1.25rem;
    line-height: 1.75rem;

}

p {
    font-size: 1.2rem;

}

.letrasAzules {
    font-family: 'adeliaregular', cursive !important;

}

[x-cloak] {
    display: none;
}

.box {
    border-width: 2px;
    border-style: solid;
    padding: 1rem;
    /* Espaciado interno */
    width: fit-content;
    /* Ajusta el ancho al contenido */
}


.circle {
    position: absolute;
    border-radius: 50%;
    background-color: white;
    animation: ripple 15s infinite;
    box-shadow: 0px 0px 1px 0px #508fb9;
}

.small {
    width: 200px;
    height: 200px;
    right: 50px;
    bottom: 100px;
}

.medium {
    width: 400px;
    height: 400px;
    left: 50px;
    bottom: -200px;
}

.large {
    width: 600px;
    height: 600px;

    bottom: -300px;
}

.xlarge {
    width: 800px;
    height: 800px;

    bottom: -400px;
}

.xxlarge {
    width: 1000px;
    height: 1000px;

    bottom: -500px;
}

.shade1 {
    opacity: 0.2;
}

.shade2 {
    opacity: 0.5;
}

.shade3 {
    opacity: 0.7;
}

.shade4 {
    opacity: 0.8;
}

.shade5 {
    opacity: 0.9;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(0.8);
    }
}