* {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

body {
    background: #FFF;
    margin: 0 auto;
    padding: 0;
    line-height: 30px;
    font-size: 16px;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    color: #444444;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
}

a {
    text-decoration: none;
}

img {
    border: 0;
    text-decoration: none;
}

div.background {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../images/background-cocktails-by-michi.jpg);
    filter: blur(8px);
    -webkit-filter: blur(8px);
}

div.wrapper {
    position: relative;
    max-width: 600px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
}

div.wrapper div.board {
    background: url(../images/woodenboard.png) top center no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 100px 30px;
    color: #fff;
    text-align: center;
    margin: 40px 0 0;
    text-shadow: 2px 2px rgba(0,0,0,0.7);
}

div.wrapper div.logo {
    width: 350px;
    background: #fff;
    border-radius: 50%;
    height: 255px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    margin-top: 30px;
}

div.cocktails {
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
}
div.cocktails img {
    max-width: 100%;
    height: auto;
}

div.wrapper div.logo img {
    max-width: 65%;
    height: auto;
    margin-top: -24px;
}

div.wrapper div.content h2 { 
    margin: 0 0 0;
}

div.wrapper div.content p { 
    margin: 20px 0 0;
}

/* Misc. */

.FloatLeft {
    float: left;
}

.FloatRight {
    float: right;
}

.ClearBoth {
    clear: both;
}

.Hidden {
    display: none;
}

.Borderless {
    border-color: rgba(0,0,0,0) !important;
}

@media screen and (max-width: 680px) {
    div.cocktails {
        width: 110%;
        top: 0;
        left: -10%;
    }
    div.cocktails img {
        max-width: 100%;
        object-fit: cover;
    }
}