@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

* {
    font-family: Helvetica ,Roboto;
}

html{
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Helvetica, Roboto, sans-serif;
    background: #fafafa;
    animation: fadeIn 1.5s ease-in-out forwards;
}

#banner {
    display: flex;
    flex: 0 0 auto;
    flex-flow: column;
    color: #fff;
    height: 100vh;
    width: auto;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#banner::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4); /* dark overlay for enhanced contrast with text */
}

/* Style the video container */
.video-background {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    overflow: hidden;
    z-index: -1; /* Ensure the video stays behind your banner content */
}

/* Ensure the video covers the container */
.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

#banner h1 {
    font-size: 2.1em;
    text-align: center;
    line-height: 1.5em;
    z-index: 1;
    animation: fadeIn 4.5s alternate forwards;
}

.break::after {
    content: "\A";      /* Inserts a newline character */
    white-space: pre;   /* Ensures the newline is honored */
  }

.container {
    display: flex;
    padding: 5% 13%;
    justify-content:center;
    flex-flow: column;
}

.container h2{
    font-size: 2.5em;
}

.container h3 {
    font-size: 2em;
    margin-bottom: 10px;
}

.container p {
    font-size: 1.2em;
    margin-top: 0px;
    color: #6e6d6d;

}

.container h5 {
    font-size: 1.3em;
    margin-bottom: 10px;
    margin-top: 1em;
}

.kinect {
    background-color: rgb(250, 198, 104, 0.8);
    padding: 10px 20px;
    border-radius: 1.5em;
    width: 70vw;
    display: flex;
    flex-flow: column;
    align-items: center;
    flex: 0 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align:center;
    margin-bottom: 4em;
}

.kinect img {
    width: 75%;
    height: auto;
}

.reading {
    background-color: rgb(212, 255, 215, 0.8);
    padding: 10px 20px;
    border-radius: 1.5em;
    width: 70vw;
    display: flex;
    flex-flow: column;
    align-items: center;
    flex: 0 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align:center;
    margin-bottom: 4em;
}

.audio {
    background-color: rgb(175, 217, 250, 0.8);
    padding: 10px 20px;
    border-radius: 1.5em;
    width: 70vw;
    display: flex;
    flex-flow: column;
    align-items: center;
    flex: 0 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align:center;
    margin-bottom: 4em;
}

.audio img {
    width: 75%;
    height: auto;
}

.endure {
    background-color: rgba(109, 156, 109, 0.4);
    padding: 10px 20px;
    border-radius: 1.5em;
    width: 70vw;
    display: flex;
    flex-flow: column;
    align-items: center;
    flex: 0 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align:center;
    margin-bottom: 4em;
    color: #000;
}

.endure img {
    width: 75%;
    height: auto;
}

.endure p {
    color: #6e6d6d;
}

.wedding {
    background-color: rgba(245, 125, 136, 0.4);
    padding: 10px 20px;
    border-radius: 1.5em;
    width: 70vw;
    display: flex;
    flex-flow: column;
    align-items: center;
    flex: 0 0 auto;
    box-shadow: 0 4px 10px rgb(0, 0, 0, 0.1);
    text-align: center;
}

.wedding img {
    width: 75%;
    height: auto;
    border-radius: 1.5em;
}

.btn {
    color:#fff;
    background-color:#000;
    padding: 1em 1.5em;
    border-radius: 1.5em;
    margin-top: 0;
    margin-bottom: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    font-weight:bold;
}

.btn:hover {
    color:#000;
    background-color:#fff;
    border: 1px solid #000;
    cursor: pointer;
    padding: 1.2em 1.7em;
}
