@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

html {
    font-family: 'Poppins', sans-serif;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
}

body {
    display: flex;
    align-items: center;
    flex-direction: column;
}

h1 {
    font-size: 36px;
    line-height: 54px;
    text-transform: uppercase;
    text-align: center;
    margin: 0px;
}

h2 {
    font-size: 24px;
    line-height: 36px;
    text-transform: lowercase;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0px;
}

h2 span {
    margin-right: 24px;
}

h2 span:last-child {
    margin-right: 0px;
}

h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0px;
}

.content {
    display: flex;
    flex-direction: column;
    max-width: 700px;
    width: 100%;
}

.content>* {
    margin-bottom: 96px;
}

.rsvp, .result {
    background-color: #F5F5F5;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    padding: 24px;
}

.rsvp>*,
.result>*,
.hero>* {
    margin-bottom: 24px;
}

.rsvp>*:last-child,
.result>*:last-child,
.hero>*:last-child {
    margin-bottom: 0px;
}

input {
    border: 2px solid #333;
    height: 40px;
    padding: 12px;
}

input[type="submit"] {
    color: #fff;
    background-color: #333;
    height: 40px;
    border: none;
    cursor: pointer;
}

.show {
    display: block;
}

.hide {
    display: none;
}