:root {
    --darkgreen: #2D2F2A;
    --palewhite: #efebe5;
    --lightgreen: #727969;
}

html {
    background-color: var(--palewhite);
}

body {
    margin: 0;
    padding: 0;
}

* {
    overflow-x: hidden;
}

p {
    font-family: sans-serif;  
}

h1 {
    font-size: 128px;
    font-family: "Kaisei Decol", serif;
    font-weight: 500;
    font-display: medium; 
    color: var(--darkgreen);
    margin-bottom: 0;
}

.wedding-img {
    transform: scale(1.2);
    position: absolute;
    z-index: -1;
    width: 100%;
}

.wedding-caption {
    color: var(--darkgreen);
}

header {
    margin-top: 200px;
    text-align: center;
}

.rsvp-link {
    margin: 620px auto 0;
    display: flex;
    justify-content: center;
    text-decoration: none;
    color: var(--lightgreen);
    font-family: sans-serif;
    font-size: 50px;
    border: 4px solid var(--lightgreen);
    border-radius: 20px;
    width: 350px;
}

.info {
    font-size: 50px;
    color: var(--lightgreen);
    margin: 30px 0 0 40px;

}

h2 {
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
    text-decoration: none;
    font-weight: 400;
    color: var(--lightgreen);
    font-family: sans-serif;
    font-size: 50px;
    width:100%;
    border: 3px solid var(--lightgreen);
    border-left: transparent;
}


.story {  
    text-align: center;
    background-color: var(--lightgreen);
    padding: 40px 40px;
    font-size: 30px;
    color: var(--palewhite);
    font-weight: 80;
}

.story strong {
    font-weight: bold;
}

.gifts {
    background-color: var(--darkgreen);
    padding: 40px 40px;
}

.gifts h3 {
    font-size: 30px;
    font-weight: bold;
    font-family: sans-serif;
    color: var(--palewhite);
    text-align: center;
}

ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--palewhite);
    font-family: sans-serif;
}

li {
    margin: 5px;
}

.park {
    position: absolute;
    z-index: -1;
    max-height: 1000px;
}

.form-box {
    display: flex;
    margin-top: 300px;
    justify-content: center;
}

form {
    background-color: var(--darkgreen);
    border-radius: 10px;
    width: 300px;
    height: 500px;
    display:flex;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    color: var(--palewhite);
    font-family: sans-serif;
    font-size: 20px;
}

input {
    padding: 20px;
}

#first-name, #last-name {
    padding: 10px;
    background-color: var(--palewhite);
    border-radius: 10px;
}

#guests {
    padding: 10px;
    background-color: var(--palewhite);
    border-radius: 10px;
    width: 40px;
    margin: 0 auto;
}



#message {
    padding: 10px;
    background-color: var(--palewhite);
    border-radius: 10px;
    height: 60px;

}

.attend {
    display: flex;
    justify-content: space-evenly;
}

#submit {
    background-color: var(--palewhite);
    padding: 10px;
    height: 50px;
    width: 200px;
    border-radius: 10px;
    margin: 0 auto;
}

footer {
    margin: 40px 0 0;
    color: var(--palewhite);
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--darkgreen);
    padding: 30px;
    height: 100px;
    
}

.honeyfund, .see-you-there {
    margin: 5px auto;
}

.honeyfund {
    text-decoration: none;
    color: var(--palewhite);
    font-weight: bold;
}

a:hover[class="honeyfund"] {
    color: blue;
}