/*    General settings   */

html, body
{
    margin: 0 auto;
	padding: 0;;
	height: 100%;
    width: 100%;
	max-width: 960px;
}

h1 
{
    font-family: Babydoll;
    font-size: 300%;
}

* 
{
    box-sizing: border-box;
}

header
{
	height: 150px;
	background-image: url("../pictures/header_baby.png");
	background-color: white;
	background-size: contain;
	background-position: 5%;
	background-repeat: no-repeat;
	margin: 0;
}

nav 
{
    float: right;
    font-family: Babydoll;
    font-size: 16px;
}

.navbar-toggle span
{
    background-color: lightskyblue;   
}

#welcome_info, #generel_articles
{
    background-image: url("../pictures/watermark.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
	min-height: 100%;
    max-width: 960px;
    padding-top: 50px;
    text-align: center;
    font-family: "Calibri Light", Arial, sans-serif;
    overflow: auto;
}

@font-face 
{
  font-family: Babydoll;
  src: url('../font/BabyDoll.ttf'); 
}

#welcome_info img
{
    width: 45%;
    float: left;
    margin-left: 15px;
    margin-right: 50px;
    margin-bottom: 50px;
}

#welcome_info article h2 
{
    font-size: 300%;    
}

#welcome_info article p 
{
    text-align: left;
    width: 90%;
    font-size: 19px;
    padding-top: 50px;
	padding-left: 20px;
}

#generel_articles article
{
    width: 80%;
    margin: 0 auto;
    text-align: left;
    font-size: 19px;
    margin-bottom: 40px; 
}

#generel_articles article form 
{
    padding-left: 20%;    
}

#generel_articles article form label, 
#generel_articles article form input, #generel_articles article form button
{
    display: block;
}

#generel_articles article form input, #generel_articles article form textarea 
{
    width: 65%; 
}

#generel_articles article form textarea 
{
    height: 250px;
    resize: none;   
}

#generel_articles article form button 
{
    background: #0099ff;
    background-image: linear-gradient(to bottom, #0099ff, #1399ed);
    border-radius: 28px;
    font-family: Arial;
    color: #ffffff;
    font-size: 20px;
    padding: 10px 20px 10px 20px;
    text-decoration: none;
}

#generel_articles article form button
{
    background: #3cb0fd;
    background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
    text-decoration: none;
}

@media only screen and (min-width: 769px) 
{
    body 
    {
	    background-image: url("../pictures/clouds.jpg");
	    background-attachment: fixed;
	    background-size: cover;    
    }
}

@media only screen and (max-width: 765px) 
{
   .menu_blue 
         {
        background-color: lightblue;
    } 

   .menu_blue li a 
       {
       transition: background-color .5s;    
   }

   .menu_blue li:hover a
	{
       background-color: lightgreen;
       border-top: 1px dashed blue;
       border-bottom: 1px dashed blue;
    }
	
	#welcome_info  article img
	{
		
		margin-left: 30%;
		margin-right: 30%;
	}
	
	#welcome_info  article p
	{
		padding-left: 25px;
	}
	
	#generel_articles article form 
	{
		padding-left: 0;    
	}
	
	#generel_articles article form input, #generel_articles article form textarea 
	{
		width: 100%; 
	}
}