@charset "utf-8";

/*
    Emily & Blake Details Stylesheet
    Author: Jose Sanchez

    Filename: styles4.css
*/

/*  ===========================
    Base Styles: Mobile Styles
    ===========================
*/

/* Font Imports */
.pinyon-script-regular {
  font-family: "Pinyon Script", cursive;
  font-weight: 400;
  font-style: normal;
}

.rochester-regular {
  font-family: "Rochester", cursive;
  font-weight: 400;
  font-style: normal;
}


/*HTML and Body Styles*/
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
        overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    background-color: antiquewhite;
}

/* Menu styles*/
.menu {
    display: block;
    justify-content: center;
    text-align: center;
    margin: 0;
    background-color: #9f8055;
    padding: 10px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}


/* Nav styles */
.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar li {
    position: relative;
}

.navbar a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    background: #c3a278;
    color: white;
    text-align: center;
}

/* Dropdown menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    min-width: 180px;
}

/* Header Styles */
.header {
    text-align: center;
    font-size: 1.2rem;
    background-color: #d6c1a4;
    border-radius: 0px 0px 30px 30px;
    padding-bottom: 10px;
}

.icon {
    height: 4rem;
    width: 4rem;
}

.rsvp {
    max-width: 700px;
    margin: 0;
    padding: 20px;
}

iframe {
    width: 100%;
    height: 1400px;
}

h1 {
    font-family: "Rochester", cursive;
    letter-spacing: 5px;
}

.disclaimer {
    text-align: center;
}

/* Footer Styles */
footer {
    text-align: center;
    background-color: #9f8055;
    padding: 20px;
    margin-top: 20px;
}



/*
    ====================
    Tablet Screen Styles
    ====================
*/

@media only screen and (min-width: 481px) {
    .rsvp {
        align-self: center;
        width: 100%;
    }


}