.invitation {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    font-weight: 400;
    font-style: normal;
}

.invitation-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
    /*margin-top: 20px;
    margin-left: 30px;
    margin-right: 30px;
    height: 300px;*/
}

.invitation-text h2 {
    font-family: "Autumn-Wind";
    font-size: 70pt;
    font-weight: 400;
}

.invitation-text span {
    font-weight: 750;
    font-size: 16pt;
}

.invitation-text a {
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 2px;
    border-color: black;
    text-decoration: none;
    color: black;
    background-color: #92A69A;
    border-radius: 10px;
    width: 400px;
    height: 40px;
}

.invitation-text a:hover {
    background-color: #E4B4AE;
    cursor: pointer;
}

.invitation-text button {
    width: 400px;
    height: 50px;
    background-color: #92A69A;
    width: 800px;
    font-size: 14pt;
    border-radius: 15px;
}

.invitation-text button:hover {
    cursor: pointer;
    background-color: #E4B4AE;
}

@media(max-width: 800px) {
    .invitation-text h2 {
        max-width: 90%;
        font-size: 12vw;
    }
    .invitation-text p {
        max-width: 90%;
        font-size: 4vw;
    }
    .invitation-text a {
        max-width: 90%;
        font-size: 4vw;
    }
}