/* styles.css */
* {
    text-decoration: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* General body styling */
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0e5d8; /* Soft beige background */
    color: #4d2e00; /* Dark brown text */
}

/* Center the content */
h1, p, h2 {
    text-align: center;
}

/* Style the heading */
h1 {
    font-size: 2.5em;
    margin-top: 50px;
    margin-bottom: 20px;
}

/* Style the paragraphs */
p {
    font-size: 1.2em;
    margin: 10px 0;
}

/* Style the link as a button */
.link {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #8bc34a; /* Fresh green color */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.link:hover {
    background-color: #7cb342; /* Slightly darker green on hover */
}

.iconLink {
    margin-right: 15px;
}

#contact {
    margin-top: 0;
}

#contact p {
    font-size: 0.8em;
}

#saveTheDate{
    margin: 5vh 0;
}

#saveTheDate p{
    font-size: 0.8em;
}
