* {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Aktiv Grotesk Corp', sans-serif;
    background-color: #783c15;/* url('../pic/background.png') repeat-x top left; */
    background-image: url('../pic/flag.png'), url('../pic/background.png');
    background-position: left top, left top;
    background-repeat: no-repeat, repeat-x;
}

.vdp-logo-inline,
.vdp-logo {
    font-weight: 500;
}

.vdp-logo-inline,
.vdp-logo i {
    font-weight: 400;
}

.vdp-logo {
    padding: 21px;
    font-size: 22px;
    color: #ffffff;
}

.vdp-logo a {
    color: #ffffff;
    text-decoration: none;
    transition: color .2s ease-in-out;
}

.vdp-logo a:hover {
    color: #505050
}

#main-content {
    position: relative;
    box-sizing: border-box;
    min-height: 200px;
}

.center-content-container {
    width: 820px;
    margin: 0 auto;
    padding: 50px 20px 80px 20px;
}

#social-toolbar *:focus {
	outline:none;
}

#social-toolbar button::-moz-focus-inner {
	border: 0;
}

#social-toolbar {
    float: left;
    width: 64px;
    margin-top: 20px;
    position: fixed;
}

#social-toolbar a,
#social-toolbar a img {
    display: block;
    width: 38px;
    height: 38px;
}

#social-toolbar a {
    border-radius: 5px;
    border: 1px solid #b9b9b9;
    margin-bottom: 10px;
    padding: 4px;
    opacity: 0.6;
    transition: all 0.2s ease-in-out;
}

#social-toolbar a:hover {
    opacity: 1;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(185,185,185,1);
    -moz-box-shadow: 0px 0px 8px 0px rgba(185,185,185,1);
    box-shadow: 0px 0px 8px 0px rgba(185,185,185,1);
}

article {
    padding-bottom: 35px;
}

a.img-link {
    text-decoration: none;
    opacity: 0.8;
    transition: opacity .2s ease-in-out;
}

a.img-link:hover {
    opacity: 1;
    border: 0;
}

.center {
    text-align: center;
}

.donate-button {
    width: 90px;
    height: 90px;
    position: fixed;
    opacity: 0.9;
    right: 20%;
    bottom: 4%;
}

.donate-button > a {
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    padding-top: 35px;
    box-sizing: border-box;
    transition: transform 1s ease-in-out, background-color .2s ease-in-out, color .2s ease-in-out, border .2s ease-in-out;
    z-index: 9000;
    -webkit-box-shadow: 0 0 50px -10px rgba(255,255,255,1);
    -moz-box-shadow: 0 0 50px -10px rgba(255,255,255,1);
    box-shadow: 0 0 50px -10px rgba(255,255,255,1);
}

.donate-rotate {
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    transform: rotate(-360deg);
}

.donate-button > a:hover {
    color: #000000;
    background: #ffffff;
    border: 1px solid #000000;
}
@media only screen and (max-width: 1000px) {
    .donate-button {
        right: 5%;
    }
}

@media only screen and (max-width: 600px) {
    .center-content-container {
        box-sizing: border-box;
        width: 100%;
        padding: 10px;
    }
    .donate-button {
        width: 60px;
        height: 60px;
        right: 4%;
    }
    .donate-button > a {
        font-size: 12px;
        padding-top: 23px;
    }
}