@import url(https://fonts.googleapis.com/css?family=Ephesis&display=swap);

html {
    height: 100%
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #214d00;
    margin: 0px;
    padding: 0px;
    border-radius: 0px;
    text-align: center;
    font-size: 20px;
    background-color: #E2FFCB;
    height: 100%;
    background-size: contain;
    background-image: url(flower.png);
    font-family: Ephesis;
}

h1 {
    margin: 1em auto 0;
}

p {
    margin: 20px;
}

.main {
    width: 30vw;
    height: 30vw;
    padding: 10px;
    font-size: xx-large;
    font-weight: bold;
    background-color: #fcf4e8;
    display: grid;
    margin: 0px;
    border-radius: 50%;
    border: 2px solid #2c6600;
    grid-template-areas:
        "title"
        "message"
        "rsvp"
        "rsvp"
        "info";

}

.main::before {
    content: '';
    display: block;
    padding-bottom: 100%;
}

.title {
    grid-area: title;
    font-weight: bolder;
}

.message {
    grid-area: message;
}

.rsvp {
    grid-area: rsvp;
    font-family: sans-serif;
}

.info {
    grid-area: info;
    font-size: large;
    margin: 1em;
}

.rsvpButton {
    color: black;
    border: 2px solid #2c6600;
    background-color: #fcf4e8;
    transition-duration: 0.4s;
    height: 100%;
    width: 40%;
    /* Green */
}

.rsvpButton:hover {
    background-color: #2c6600;
    /* Green */
    color: #fcf4e8;
    cursor: pointer;
}

@media only screen and (max-width: 1300px) {
    .main {
        border-radius: 0%;
        margin: auto;
        height: auto;
        width: 50%;
    }
}