@import url('https://fonts.googleapis.com/css?family=Ubuntu:400,700&subset=latin-ext');
* {
    box-sizing: border-box;
}

body {
    font-family:'Ubuntu', sans-serif;
    font-weight: 400;
    padding: 20px;
    background: #f1f1f1; 
    line-height: 30px;
}

.content{
    width: 70%;
    margin-left: auto; 
    margin-right: auto;
}

.header {
    padding: 30px;
    font-size: 40px;
    text-align: center;
}

/* Style the top navigation bar */
.topnav {
    font-size: 14px;
    overflow: hidden;
    background-color: #00aeed;
}


/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
    float: left;
    width: 75%;
}

/* Right column */
.rightcolumn {
    float: left;
    width: 25%;
    background-color: #f1f1f1;
    padding-left: 20px;
}

/* Fake image */
.fakeimg {
    background-color: #aaa;
    width: 100%;
    padding: 20px;
}

/* Add a card effect for articles */
.card {
    background-color: white;
    padding: 20px;
    margin-top: 20px;
    clear:both;
}
/* Add a card effect for articles */
.zgloszenie {
    background-color: #FFF;
    color: #FFF;
    padding: 20px;
    margin-top: 20px;
}
/* Add a card effect for articles */
.slider {
    padding: 0px;
    margin-top: 20px;
}
/* Add a card effect for articles */
.banery {
    padding: 0px;
    margin-top: 20px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Footer */
.footer {
    padding: 20px;
}

.lf {
    color: #FFF;
    text-align: center;
    background-color: #00aeed;
    float: left;
    width: 30%;
    margin: 1.5%;
    padding: 2%;
}
.rf {
    color: #FFF;
    text-align: center;
    background-color: #00aeed;
    float: left;
    width: 30%;
    margin: 1.5%;
    padding: 2%;
}
a:link {
    color: #FFF;
    text-decoration: none;
}

/* visited link */
a:visited {
    color: #FFF;
    text-decoration: none;
}

/* mouse over link */
a:hover {
    color: #FFF;
    text-decoration: none;
}

/* selected link */
a:active {
    color: #FFF;
    text-decoration: none;
}

.leftcolumn a:link {
    color: #00aeed;
    text-decoration: none;
}
/* visited link */
.leftcolumn a:visited {
    color: #00aeed;
    text-decoration: none;
}

/* mouse over link */
.leftcolumn a:hover {
    color: #005777;
    text-decoration: none;
}

/* selected link */
.leftcolumn a:active {
    color: #00aeed;
    text-decoration: none;
}

h1{
    color: #1aaadb;
    text-align: center;
}
hr{
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}


.button {
    font-family:'Ubuntu', sans-serif;
    border-radius: 4px;
    background-color: #00aeed;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 14px;
    padding: 10px;
    width: 200px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}
blockquote {
		font-family: Georgia, "Times new roman", Times;
		font-style: italic;
		
		color: #333;
		width: 75%;
		border-left: 5px solid #ddd;
		padding-left: 25px;
		position: relative;
	}
	blockquote:after {
		position: absolute;
		bottom: 0;
		right: -50px;
		color: #eee;
		font-size: 10em;
		line-height: 0;
		content: '"';
	}
	blockquote p:last-child {
		font-size: 0.75em;
		color: #777;
	}
	blockquote p:last-child:before {
		content: '—';
		margin-right: 5px;
	}


/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media (max-width: 1000px) {
    body{
        font-size: 70%;
    }
    .content{
    width: 100%;
    margin-left: auto; 
    margin-right: auto;
}
    .leftcolumn, .rightcolumn {   
        width: 100%;
        padding: 0;
    }
    .lf, .rf {   
        width: 98%;
        padding: 1%;
        }
    .header img {   
        width: 100%;
        padding: 0;
        }
        
    h1{
        font-size: 10px;
        color: #1aaadb;
        text-align: center;
}   
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media (max-width: 400px) {
    .topnav a {
        float: none;
        width: 100%;
    }
}