/* ==========================================================================
   LESESOMMER 2026
   RESET.CSS
   ========================================================================== */


/* ==========================================================================
   Box Model
   ========================================================================== */

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


/* ==========================================================================
   HTML
   ========================================================================== */

html{

    scroll-behavior:smooth;

    -webkit-text-size-adjust:100%;

    text-size-adjust:100%;

}


/* ==========================================================================
   Body
   ========================================================================== */

body{

    margin:0;

    min-width:320px;

    min-height:100vh;

    overflow-x:hidden;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

}


/* ==========================================================================
   Images
   ========================================================================== */

img,
picture,
svg,
canvas{

    display:block;

    max-width:100%;

    height:auto;

    border:0;

}


/* ==========================================================================
   Video
   ========================================================================== */

video{

    display:block;

    max-width:100%;

}


/* ==========================================================================
   Forms
   ========================================================================== */

button,
input,
textarea,
select{

    font:inherit;

    color:inherit;

    background:none;

    border:none;

    outline:none;

}


/* ==========================================================================
   Buttons
   ========================================================================== */

button{

    cursor:pointer;

    appearance:none;

}


/* ==========================================================================
   Links
   ========================================================================== */

a{

    color:inherit;

    text-decoration:none;

}


/* ==========================================================================
   Lists
   ========================================================================== */

ul,
ol{

    list-style:none;

}


/* ==========================================================================
   Tables
   ========================================================================== */

table{

    border-collapse:collapse;

    border-spacing:0;

}


/* ==========================================================================
   Typography
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6,
p{

    font-size:inherit;

    font-weight:inherit;

}


/* ==========================================================================
   Inputs
   ========================================================================== */

input::-webkit-search-decoration,
input::-webkit-search-cancel-button{

    appearance:none;

}


/* ==========================================================================
   Selection
   ========================================================================== */

::selection{

    background:rgba(0,0,0,.15);

}


/* ==========================================================================
   Hidden
   ========================================================================== */

[hidden]{

    display:none !important;

}


/* ==========================================================================
   Focus
   ========================================================================== */

:focus{

    outline:none;

}

:focus-visible{

    outline:none;

}


/* ==========================================================================
   WordPress
   ========================================================================== */

.alignnone{

    margin:0;

}

.aligncenter{

    display:block;

    margin-left:auto;

    margin-right:auto;

}

.alignleft{

    float:left;

}

.alignright{

    float:right;

}

.wp-caption{

    max-width:100%;

}

.wp-caption img{

    width:100%;

    height:auto;

}


/* ==========================================================================
   Root Container
   ========================================================================== */

#lesesommer{

    position:relative;

    width:100%;

    overflow:hidden;

}