@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
 /* FONTS & TYPOGRAPHY */
    /* .5rem = 8px | 1rem = 16px | ... */
    --body-font: "Poppins", sans-serif;
    --second-font: "Montserrat", sans-serif;

    /* transition */
    --transition: cubic-bezier(0.05, 0.2, 0.1, 1);

    /* COLORS */
    /* Color-Mode: HSL (hue, saturation, lightness) */

    --navi-bg-color: #5a5a5a;
    --footer-text-color: #5a5a5a;
    --hover-color: #000000;



    /* border radius */
    --radius: 0.5rem;
    
    --big-font-size: 4.5rem;
    --h1-font-size: 3.75rem;
    --h1_5-font-size: 2.75rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.5rem;
    --normal-font-size: 1.125rem;
    --small-font-size: 1rem;
    --smaller-font-size: 0.875rem;

    /* font-weight */
    --weight-300: 300;
    --weight-400: 400;
    --weight-500: 500;
    --weight-600: 600;
    --weight-700: 700;
    --weight-900: 900;



}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    background-color: white;
}
body{
    color: black;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    font-weight: var(--weight-300);
    background-color:rgb(255, 250, 241);
        
}
html{
    scroll-behavior: smooth;
}
ul{
    list-style: none;
}

a{
    color: black;
    text-decoration: none;       
}

.container{
    
}

/* NAVIGATION */
.navbar{
    height: 70px;
    background-color: var(--navi-bg-color);
}
.navbar-brand{
    color: white;
}
.nav-link.active{
    color: white;
}
.nav-link{
    color: white;
}
.nav-link:hover{
    color: var(--hover-color) ;
}




/* MAIN */
.main{
    margin-top:100px;
}

.main .store_left p{
    margin: 0;
}

.main .store_right p{
    margin: 0;
}

.main span{
    font-weight: 700;
}

.mail{
    margin: 75px 0;
    text-align: center;
}
.mail a:hover{
    color: var(--navi-bg-color) ;
}

.main .infotitle{
    margin-top: 20px;
}
.main .infotext{
    margin-left:110px;
    margin-bottom: 20px;
    width: 600px;
    text-align: justify;
}





/* FOOTER */
.footer_section{
    text-align:  center;
    font-size: var(--small-font-size);
}
.footer_section a{
    color: var(--footer-text-color);
}

.footer_section a:hover{
    color: var(--hover-color);
}


/* LEFT CONTENT */
.footer_section .content_left .content_first{
    text-align: left;
}
.footer_section .content_left .content_second{
    text-align: left;
}
.footer_section .content_left .content_third{
    text-align: left;
}


/* CENTER CONTENT */
.footer_section .content_center img{
    opacity: 1;
}











/* RIGHT CONTENT */
.footer_section .content_right .content_first{
    text-align: left;
}
.footer_section .content_right .content_second{
    text-align: left;
}
.footer_section .content_right .content_third{
    text-align: left;
}


