
html {
    font-family: "Source Sans Pro", sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding: 2em;
    box-sizing: border-box;
    text-align: center;
}

a {
    color: #f0f0f0;
}

a:hover {
    color: #bbb;
}

.bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(-45deg, #000, #151515);
    background-size: 400% 400%;
    animation: GradientBackground 15s linear infinite;
}

@keyframes GradientBackground {
    0% {
        background-position: 0% 50%;
    }

    70% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

#card_wrapper {
    display: flex;
    align-items: flex-end;
    position: relative;
    width: 46em;
    padding: 5em 0 0;
}

#card_border {
    width: 100%;
    height: 30em;
    padding: 1.5em;
    box-sizing: border-box;
    background: #050505;
    box-shadow: 10px 10px 50px 0px rgb(0, 0, 0), 60px 60px 250px 30px rgba(255, 255, 255, 0.1);
    border-radius: 3em 0;
}

#card {
    display: flex;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    padding: 5.5em 2em 2em;
    box-sizing: border-box;
    border: 1px solid #999;
    border-top: 2px solid #9f9f9f;
    border-radius: 2em 0;
}

#mdc_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 13em;
    height: 13em;
    border-radius: 100%;
    background: #000;
    border-top: 4px solid #999;
    border-right: 2px solid #999;
    border-bottom: 1px solid #999;
    border-left: 2px solid #999;
}

#mdc_logo img {
    width: 65%;
}

#card p {
    flex-basis: 100%;
    font-size: 1.8em;
    color: #f0f0f0;
}

#card .vert_line {
    height: 70%;
    border: 1px solid #999;
}

#socialmedia {
    display: flex;
    justify-content: space-evenly;
}

#card svg {
    width: 3em;
    height: 3em;
    margin: 1em;
    cursor: pointer;
}

#card a {
    text-decoration: none;
}

.email, .facebook_logo, .instagram_logo, .youtube_logo {
    fill: #f0f0f0;
}

svg:hover .email, svg:hover .facebook_logo, svg:hover .instagram_logo, svg:hover .youtube_logo {
    fill: #888;
}

@media (max-width:800px) {
    html {
        font-size: 0.9em;
    }
}

@media (max-width:620px) {
    html {
        font-size: 0.8em;
    }

    body {
        padding: 1em;
    }
}
