body {
    color: whitesmoke;
    font-size: 1.2rem;
    font-family: Tahoma, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6rem;
}

.actions-buttons {
    display: flex;
    justify-content: center;
    padding: 0.5rem;
	margin-top: 2rem;
}

.actions-buttons a {
    background-color: #f85700;
    padding: 0.5rem;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    width: 100%;
	max-width: 300px;
    color: whitesmoke;
}

.actions-buttons a:hover {
    background-color: #c14400;
}

.bg-dark {
    background-color: #0e0e0e;
}

.bg-medium {
    background-color: #232323;
}

span.label {
    color: whitesmoke;
}

a {
    color: #f85700;
    text-decoration: none;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition:.5s;
}

a:hover {
    color: whitesmoke;
}

section {
    max-width: 1200px;
    margin: auto;
}

footer {
    font-size: 0.9rem;
    max-width: 1200px;
    margin: auto;
    color: #a8a8a8;
    padding: 1rem;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

footer > div {
    text-align: center;
}

footer a {
    color: #a8a8a8;
}

.content-wrapper {
    padding: 0 2.5em 2.5em 2.5em;
}

.social-wrapper {
    padding: 2.5em;
}

header {
    width: 100%;
    background-image: url("../assets/bbq.webp");
    background-image: linear-gradient(transparent, #232323 75%), url("../assets/bbq.webp");
    background-size: cover;
    height: 500px;
    margin: auto;
}
.hero {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 500px;
}

.logo {
    margin: auto;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.logo > img {
    margin: auto;
}

h1 {
    text-align: center;
    padding-bottom: 1.5rem;
    margin: 0;
    display: inline-block;
    position: relative;
    width: 100%;
}
h1:before{
     content: "";
     position: absolute;
     width: 25%;
     height: 1px;
     bottom: 0;
     left: 38%;
     border-bottom: 3px solid #f85700;
 }

.text {
    padding-top: 1.5rem;
	text-align: justify;
}

.social-icons {
    display: flex;
    justify-content: center;
}

.social-icons > a {
    margin: 2rem;
    text-align: center;
    color: whitesmoke;
}

.supporters {
    margin-top: 1.5rem;
    align-items: center;
    display: flex;
    justify-content: center;
}

.supporters > a {
    padding: 1rem;
}

@media screen and (max-width: 620px) {
    .supporters {
        flex-direction: column;
    }
}