* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
}

section {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;

}


h1,h2{
    font-family: "Ballet", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 150px;
}



p{
    font-family: "Castoro Titling", serif;
    font-weight: 400;
    font-style: normal;
}

h1>span{
    font-family: "Rosarivo", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
}

#myVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

#banner{
    position: relative;
    z-index: 1;
    height: 100%; /* Full viewport height */
    overflow: hidden;
    color: #fff;
}

#banner>div>p{
    letter-spacing: 15px;
}

#banner-info{
    display: grid;
    grid-template-columns: repeat(2,50%);
    letter-spacing: 15px;
    justify-content: center;
}

#banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: -1; /* places it behind the content */
}

#banner-description{
    font-family: "Castoro Titling", serif;
    letter-spacing: 0px!important;
}

#rsvp{
    background: url("Assets/rsvp-background.jpg") no-repeat center center;
    background-size: cover;
}

@media only screen and (max-width: 600px){
    #banner{

    }
}