
html, body, p {
    box-sizing: border-box;
    height: 100%;
    padding: 0;
    margin: 0;
}

html {
    height: 100%;
    font-family: 'Teko', sans-serif;
    background: rgb(89,9,176);
    background: radial-gradient(circle, rgba(89,9,176,1) 0%, rgba(50,0,94,1) 100%);
}

body {
    background: rgb(89,9,176);
    background: radial-gradient(circle, rgba(89,9,176,1) 0%, rgba(50,0,94,1) 100%);
    height:100%;
    background-image: url(images/svg/bg-test.svg);
    background-position: top;
    background-repeat: no-repeat;
    fill-opacity: 0.3;
    background-size:cover;
}
.logo {
    height: 40px;
    text-align: center;
    margin: auto;
}

.page-header{
    color: white;
    width: 100%;
    text-align: center;
    margin-bottom: 70px;
    background: rgba(89, 9, 176, 1);
}
.page-header > img {
    margin-top: 20px;
    text-align: center;
    height: 40px;
}
.page-header > h1 {
    font-size: 6em;
    text-align: center;
    margin: 0;
    padding: 0;
}


.page-body {
    width: 75%;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
}
.page-body > div {
    flex: 1 1 300px;
    margin: 15px;
    padding: 70px 0;
    height: 300px;
    background: rgb(89,9,176);
    background-image: url(images/svg/BG.svg);
    background-position: top;
    background-repeat: no-repeat;
    background-size:auto;
    text-align: center;
    color: white;
    border-radius: 5px;
}
.page-body > div p{
    font-size: 1.5em;
    text-align: center;
}

.shout {
    width: 75%;
    margin: auto;
    margin-bottom: 25px;
    padding: 75px 0;
    text-align: center;
    color: white;
    background: rgba(51, 26, 97, 1);
}
.shout > p {
    font-size: 3em;
}

.icon {
    height: 40px;
    margin-bottom: 15px;
}

.wrapper {
    box-sizing: border-box;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.page-header, .page-footer {
    flex-grow: 0;
    flex-shrink: 0;
}

.page-footer {
    text-align: center;
    color: white;
    background: rgba(51, 26, 97, 1);
}