@charset "UTF-8";
/*
Theme Name: Sarah Remmel
Author: Sarah Remmel
Requires at least: WordPress 5.4.2
Version: 1.0
Text Domain: sare
*/

/**************************************************
 *
 * Stylesheet contains:
 *
 * Please check documentation below
 *
 ***************************************************/

/***************************************************
*
* PROJECT DOCUMENTATION
*
* This stylesheet is built with SASS, located in css/sass/style.scss and output to css/sass/style.css
*
* style.css as the main stylesheet follows the structure of sub stylesheets, written after the SMACSS method
*
* Theme styles, default theme settings: css/sass/_variables.scss
* Override Bootstrap styles, definition of general settings for HTML-elements: css/sass/_base.scss
* Nav styles, definition of navigation elements: css/sass/_nav.scss
* Define modules: css/sass/_modules.scss
* Global layout setup: css/sass/_layout.scss
*
* For special overrides see special CSS-Files.
*
***************************************************/


html {scroll-behavior: smooth;}

body {
    overflow-y: scroll;
    color: #000;
    animation: fadein 3s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/*
* Fonts
 */

body {
    /*font-family: 'DINosaur-Book', sans-serif;
    font-weight: normal;
    font-style: normal;*/
}

h1, h2, h3, h4, h5 {
    /*font-family: 'DINosaur-Medium', sans-serif;*/
}