* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

#outer-section-one {
    position: fixed;
    overflow-x: hidden;
    height: 100vh;
    box-shadow: 0px 0px 15px 3px black;
    width: 100%;
    max-width: 1000px;
    background-color: var(--primary-color);
}

#outer-section-two {
    position: relative;
    overflow-x: hidden;
    z-index: 1;
    margin-top: 100vh;
    width: 100%;
    max-width: 1000px;
    box-shadow: 0px 0px 15px 3px black;
    background-color: var(--primary-color);
}

#navbar-section {
    position: relative;
    width: 100%;
    background-color: var(--secondary-color);
}

#intro-section {
    position: relative;
    width: 100%;
}

#sub-intro-section {
    position: relative;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--primary-color);
}

#sub-intro-paragraph {
    font-size: 20px;
    color: var(--text-color);
    font-weight: 500;
    margin-top: 5vh;
}

#sub-intro-button {
    width: 125px;
    height: 50px;
    border-radius: 25px;
    background-color: var(--third-color);
    border: none;
    color: var(--text-color);
    font-weight: 500;
    box-shadow: 2px 2px 5px 1px black;
    cursor: pointer;
    margin-top: 2.5vh;
    font-size: 25px;
}

.line {
    height: 2px;
    width: 80%;
    margin-top: 5vh;
    background-color: var(--text-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.5s linear;
}

.line.animate {
  transform: scaleX(1);
}

#story-section {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--primary-color);
}

#venue-section {
    position: relative;
    width: 100%;
    background-color: var(--secondary-color);
}

#dress-code-section {
    position: relative;
    width: 100%;
    background-color: var(--primary-color);
}

#akkommadasie-section {
    position: relative;
    width: 100%;
    background-color: var(--secondary-color);
}

#decoration-photo-one {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#decoration-photo-one img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#decoration-photo-two {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#decoration-photo-two img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#decoration-photo-three {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 1vh;
}

#decoration-photo-three img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#decoration-photo-four {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#decoration-photo-four img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#decoration-photo-five {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#decoration-photo-five img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


#form-section {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--secondary-color);
}