@charset "UTF-8";
/*
Theme Name: Industriebaupreis
Author: Institut für Bauiökonomie Universität Stuttgart
Requires at least: WordPress 5.5.1
Version: 2.0
Text Domain: ibp
*/

/**************************************************
 *
 * 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/ibp.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: #333;
    background-color: white;
    animation: fadein 0.5s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}