body {
    margin: 0;
    padding: 0;
}

#main {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

#main .background {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
    background-image: url("../assets/gartentisch.jpg");
    background-attachment: fixed;
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: -10;
}

.invitation {
    position: relative;
    display: block;
    width: 800px;
    max-width: 100%;
    margin: 50px auto;
    padding: 30px;
    font-family: "Merriweather", serif;
    font-size: 1.5rem;

    background-color: #fefabc;
    background-image: linear-gradient(150deg, #efec88 0%, #fefabc 100%);
    border-bottom-right-radius: 60px 15px;
}

.invitation h1 {
    margin-top: 50px;
    text-decoration: underline;
}

.invitation::before {
    position: absolute;
    content: "";
    top: 15px;
    left: calc(50% - 16px);
    background: #96000d radial-gradient(at 10px 10px, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.5));
    width: 32px;
    height: 32px;
    border-radius: 50%;
    box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.5);
}

.invitation::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: -4px;
    width: 100%;
    height: 140px;
    background-image: linear-gradient(173deg, rgba(0,0,0,0) 92%, rgba(0,0,0,0.4) 100%);
    z-index: -1;
    filter: blur(2px);
}

@media screen and (min-width: 960px) {
    .invitation {
        transform: rotate(2deg);
        border: 1px solid #cccccc;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .invitation::after {
        transform: rotate(2deg);
    }
}

.plus1 {
    font-size: 1.6rem;
    font-weight: bold;
}

blockquote {
    margin-left: 0;
    padding-left: 20px;
    border-left: 4px solid #cccccc;
}
