@import url('https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&family=Lavishly+Yours&family=Ms+Madi&family=Pinyon+Script&display=swap');

/* Index and Navbar */

body {
    margin: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    background-color: white;
}

/* Navigation Menu and Responsiveness */

.navigation-menu {
    display: none;
}

@media only screen and (max-width: 1000px) {
    .navigation-menu {
        display: block
    }
    .menu-hide {
        display: none
    }
}

/* Nav */

.navbar ul {
    flex: 1;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.navbar li {
    float: left
}

.navbar li a {
    font-family: "Cardo", sans-serif;
    text-decoration: none;
    color: black;
    padding: 14px 14px;
    display: flex;
    overflow: hidden;
    height: 25px;
    font-size: 15px;
}

.navbar li a:hover {
    background-color: rgb(181, 181, 181);
}

/* Icons */

.icons ul {
    flex: 1;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.icons li {
    float: left
}

.icons li a {
    font-family: "Cardo", sans-serif;
    text-decoration: none;
    color: black;
    padding: 14px 14px;
    display: flex;
    overflow: hidden;
    height: 25px;
    font-size: 15px;
}

.icons li a:hover {
    background-color: rgb(181, 181, 181);
}

/* Rest of Index */

main {
    font-family: "Cardo", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main .container .banner {
    width: 100%;
}

main .container {
    position: relative;
    text-align: center;
    color: white;
}

.video-intro {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.textimg {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-content: center;
    align-items: center;
}

.text h1 {
    font-family: "Lavishly Yours", sans-serif;
    font-weight: normal;
    color: black;
    font-size: 4.5em;
    text-align: center;
}

.text p {
    font-size: 18px;
}

@media only screen and (max-width: 800px) {
    .text h1 {
        font-family: "Lavishly Yours", sans-serif;
        font-weight: normal;
        color: black;
        font-size: 2em;
        text-align: center;
    }
    .textimg img {
        width: 25%;
        min-width: 10em;
        padding-bottom: 2em;
    }
}

.textimg img {
    width: 25%;
}

.video-intro .text {
    max-width: 50em;
}

.video-intro .text p {
    font-family: "Cardo", sans-serif;
    padding: 2em;
    text-align: center;
}

main iframe {
    max-width: 100%;
}

@media only screen and (max-width:800px) {
    main iframe {
        max-width: 100%;
        max-height: 25em;
    }
}

.copyright {
    text-align: center;
    font-family: "Cardo", sans-serif;
}