@import url('https://fonts.googleapis.com/css?family=Calligraffitti');

html, body {
    height: 100%;
    background-color: #ECEFF1;
    margin: 0;
    position: relative;
}

#main-content {
    position: absolute;
    margin: auto;
    top: 0; left: 0; bottom: 0; right: 0;
    max-width: 700px;
    height: 150px;
    width: 80%;
    font-family: 'Calligraffitti', cursive;
    text-shadow: 1px 2px #CFD8DC;
    font-size: 70px;
    line-height: 150px;
    display: flex;
    justify-content: space-between;
}

#credit {
    position: absolute;
    margin: auto;
    bottom: 7px;
    left: 0px;
    right: 0px;
    text-align: center;
    font-family: sans-serif;
    font-size: 10px;
    color: #78909C;
}

a {
    color: #78909C;
}

#image {
    width: 150px;
    height: 150px;
    background-image: url('/img/couple.svg');
    background-size: 100% 100%;
}

@media (max-width: 720px) {
    #main-content {
        font-family: 'Calligraffitti', cursive;
        font-size: 60px;
        line-height: 100px;
    }

    #image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 600px) {
    #main-content {
        font-family: 'Calligraffitti', cursive;
        font-size: 50px;
        line-height: 80px;
    }

    #image {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 500px) {
    #main-content {
        font-family: 'Calligraffitti', cursive;
        font-size: 40px;
        line-height: 65px;
    }

    #image {
        width: 65px;
        height: 65px;
    }
}