*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
    margin: 0;
    color: #3e3e3e;
}

h1, h2, h3, .uppercase {
    text-transform: uppercase;
}

hr {
    max-width: 45vw;
    border: 0.5px solid #c5c5c5;
    margin: 3em auto;
}

.big-div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    padding: 3rem 1rem;
    text-align: center;
    text-transform: uppercase;
}

.big-div p {
    max-width: 800px;
}

div:nth-child(odd) {
    background-color: #F5F5DC;
}
div:nth-child(even) {
    background-color: #57563F;
    color: #ececec;
}

.centered-text {
    text-align: center;
}

#header-image {
    background-image: url("../pic.jpg");
    background-size: cover;
    background-position: center;
    height: 100vh;
}

#logo {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    margin: auto;
}

#other-events {
    background-image: url("../beige_texture.jpg");
    background-size: cover;
}

#other-events h1 {
    margin: auto;
}

#questions p {
    font-style: italic;
}

.urls {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    max-width: 100%;
}
.urls a {
    text-decoration: none;
    color: #ececec;
}

ul {
    text-align: left;
}

.wedding-colors {
    display: flex;
}

.color-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 1rem;
}

#mocha {
    background-color: #53403b;
}
#thyme {
    background-color: #4c774f;
}
#moss-green {
    background-color: #8f9f5f;
}
#french-blue {
    background-color: #617998;
}

/* Media Queries */
@media (max-width: 600px) {
    .big-div {
        font-size: 1.3rem;
        padding: 2rem 1rem;
    }
    .urls a {
        font-size: 1.3rem;
    }
}