body {
    min-height: 100vh;
    margin: 0px;
    padding: 0px;
    /*background-color: #B8A5CE;*/
    background-image: url('Background_1.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    font-family: 'Source Sans Pro', sans-serif;
}

/*
beige: #FCEFE5
purple light: #B8A5CE
purple medium: #75629A
purple dark: #3A234C
*/

.wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.h1, h2, h3, h4, h5 {
    text-align: center;
}

.logo {
    display: block;
    max-width: 100%;
    max-height: 500px;
    margin: auto;
}

.links {
    max-width: 500px;
    margin: 50px auto;
}

.button {
    display: flex;
    align-items: center;
    margin: 20px;
    padding: 10px;
    background: #fff;
    text-decoration: none;
    color: #3A234C;
    border-radius: 10px;
    box-shadow: 3px 3px 5px #75629A;
    transition: 0.2s;
}

.button:hover {
    background: #eee;
    color: #3A234C;
    transform: scale(1.02);
}

.button .label {
    margin: 10px;
    flex-grow: 5;
    text-align: center;
}

.button .icon {
    display: block;
    flex-grow: 1;
    width: auto;
    height: 30px;
}

.footer {
    padding: 50px;
    text-align: center;
}