/*
Theme Name: Gouda New Theme
Theme URI: gouda.tv
Description: Tema nuevo para el proyecto Gouda
Author: Maria Lara
Author URI: maaarialara.com
Version: 1.0
*/

/* CSS RESET */

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

body {
    line-height: 1
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: '';
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

:root {
    --main-bg-color: #F1F1F1;
    --main-text-color: #050505;
    --green-color: #D7FFD9;
    --light-grey: rgb(191, 191, 191);
    --main-font: "FabioXM";
    --pad-S: 0.5rem;

    /* --font-S: 11px; */
    /* --font-S: 12.5px;
    --font-M: 12.5px; */
    --font-S: 11.5px;
}


/* my css */

*,
*:after,
*:before {
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}


body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-size: 62.5%;
    color: var(--main-text-color);
    font-family: 'Times New Roman', Times, serif;
    font-family: var(--main-font);
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 100;
    font-size: var(--font-S);
}

body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

a {
    color: var(--main-text-color);
    text-decoration: none;
    line-height: 1;
}

p {
    line-height: 1.2;
    font-size: var(--font-M);
}

ul {
    padding-inline-start: 0;
}

li {
    list-style: none;
}


ul.gallery {
    display: flex;
    flex-direction: column;
    gap: 0;
}

main ul.gallery li img {
    width: 50vw;
    height: 100%;
    display: block;
    margin: auto;
        opacity: 0.9;
}
/* scroll star */
.scroll-star {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    line-height: 1;
    animation: starFade 0.9s ease-out forwards;
    color: #84DDFF;
}

@keyframes starFade {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}




/*IPAD RESPONSIVE*/
@media screen and (max-width: 1020px) {
main {
    background-color: var(--main-bg-color);
}
    main ul.gallery li img {
        width: 100vw;
    }

}
