
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

@import "./top.css";
@import "./slider.css";
@import "./article.css";
@import "./bottom.css";

html{
    font-family: "Inter","sans-serif";
    scroll-behavior: smooth !important;
}

body{
    font-family: "Inter","sans-serif";
    margin:0 auto;
    box-sizing: border-box;
}

p{
    all:unset;
}

#menuToggle:checked + #menu {
    display: block;
}


/* espa banner */
.espa-banner {
    position: fixed;
    bottom: 0;
    left: 0; 
    width: 100%; 
    display: flex;
    justify-content: center; 
    align-items: center; 
    background-color: #ffffff;
}

.espa-desktop, .espa-mobile {
    display: none; 
    align-items: center; 
}

.espa-desktop {
    display: flex; 
    justify-content: center; 
}

.espa-desktop img, .espa-desktop a img, .espa-mobile img, .espa-mobile a img {
    max-width: 100%; 
    height: auto; 
    display: block; 
}

/* Media query for desktop */
@media screen and (min-width: 768px) {
    .espa-desktop {
        display: flex;
    }
}

/* Media query for mobile */
@media screen and (max-width: 767px) {
    .espa-mobile {
        display: flex; 
        flex-direction: column; 
    }
}

@media (max-width:768px) {
    .espa-mobile {
        display: block;
    }
    .espa-desktop {
        display: none;
    }    
}

/* END of espa banner */
