html, body {
    width: 100%;
    background-color: #FDB515;
    font-size: 16pt;
}
#maincontent {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#attend_yes, #attend_no {
    height:20px;
    width: 20px;
}
#submit {
    padding: 15px;
    background-color: #fdb515;
    color: #003262;
    font-family: "Georgia", serif;
    font-size: 32pt;
    border-radius: 10px;
    border: #003262;
    border-width: 2.5pt;
    border-style: solid;
}
#submit:hover {
    background-color: #fdb515;
    transition: 0.16s;
}
#submit:active {
    background-color: #ffc525;
    color: #104272;
}
#calcar {
    width: 75%;
    background-color: #003262;
    box-shadow: rgba(0,0,0,0.298039) 3px 5px 0px;
    padding-top: 25px;
    padding-bottom: 30px;
    padding-left: 50px;
    padding-right: 50px;
    margin: 20px;
    border-radius: 10px;
    font-family: "Baskerville", serif;
    font-size: 20pt;
    text-shadow: rgba(0,0,0,0.298039) 1px 1px 0px;
}
#calcar img {
    border-radius: 5px;
}
.datatitle {
    padding: 0px;
    padding-bottom: 10px;
    margin: 0px;
    font-size: 24pt;
    color: #003262;
    font-family: "Georgia", serif;
}
.datablock {
    width: 66%;
    background-color: white;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 25px;
    padding-right: 25px;
    margin: 10px;
    border-radius: 5px;
    font-size: 16pt;
    box-shadow: rgba(0,0.196,0.384,0.298039) 3px 4px 0px;
    font-family: "Open-Sans", sans-serif;
}
#title {
    font-size: 32pt;
    width: 80%;
    text-align: center;
    color: #003262;
    font-weight: 1000;
    font-family: "Georgia", serif;
}
label {
    font-size: 20pt;
    color: #003262;
    font-family: "Georgia", serif;
    padding: 7px;
}
#rsvp_message {
    font-size: 18pt;
    color: #003262;
}
.formcard {
    display: flex;
}
#rsvpform {
    display: flex;
    flex-direction: column;
    padding: 7px;
}
.formline {
    display: flex;
    justify-content: center;
    margin: 7px;
}
.formline input[type="text"] {
    font-size: 20px;
    padding: 10px;
    margin-right: 10px;
    border-radius: 10px;
    border-color: #003262;
    border-width: 2.5pt;
    border-style: solid;
}
.formline input[type="radio"] {
    opacity: 0;
    position: fixed;
    width: 0;
}
.formline input[type="radio"] + label {
    display: inline-block;
    background-color: #ffd555;
    color: #003262;
    padding: 5px;
    font-family: "Georgia", serif;
    font-size: 16pt;
    border-radius: 5px;
    border: black;
    border-width: 2.5pt;
    border-style: solid;
    width: 42px;
    text-align: center;
    margin: 5px;
}
.formline input[type="radio"] + label:hover {
    background-color: #006292;
    color: #dd9505;
    transition: 0.16s;
}
.formline input[type="radio"]:checked + label {
    background-color: #003262;
    color: #fdb515;
    transition: 0.3s;
}

.editbutton {
    padding: 7px;
    background-color: #003262;
    color: #fdb515;
    font-family: "Georgia", serif;
    font-size: 23pt;
    border-radius: 10px;
    border: black;
    border-width: 2.5pt;
    border-style: solid;
}
.editbutton:hover {
    background-color: #004272;
    transition: 0.16s;
}
.editbutton:active {
    background-color: #003060;
    color: #ffc525;
}
