@font-face {
    font-family: 'Nostalgic Memories';
    font-style: normal;
    src: url("../fonts/nostalgic.otf") format("opentype");
}

@font-face {
    font-family: 'Nostalgic Memories';
    font-style: italic;
    src: url("../fonts/nostalgic-italic.otf") format("opentype");
}

* {
    font-family: 'Nostalgic Memories';
    font-size: 18px;
}

body {
    overflow-x: hidden;
    background-color: #E9EDE8;
}

ul,
ul li {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

span {
    font-size: inherit;
}

.hero {
    position: relative;
    min-height: 100vh;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;

    background-color: rgba(0, 0, 0, .35);
}

.hero * {
    position: relative;
    z-index: 99;
}

.menu {
    display: inline-flex;
    /* margin-top: 3em; */
    margin-bottom: 120px;
}

.menu li {
    margin: 0 25px;
}

.our-wedding {
    font-size: 3em;
    margin-bottom: -0.54em;
}

.title {
    font-size: 6em;
}

.about {
    font-style: italic;
    margin-bottom: 120px;
}

.event-wrapper {
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.event-day {
    font-size: 3.54em;
}

#ceremonia {
    position: relative;
    padding: 160px 0 112px;
}

.symbols {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: auto;
}

.symbols img {
    width: 24px;
    height: auto;
}

.divider {
    display: block;
    height: 2px;
    width: 65%;
    margin: 0 auto;

    background-color: #205D0E;
}

#recepcion {
    position: relative;
    padding: 48px 0 80px;
    background-size: cover;
    background-position: center;
}

#recepcion::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;

    background-color: rgba(255, 255, 255, 0.8);
}

#recepcion * {
    z-index: 99;
}

.gifts {
    padding: 148px 0;
}

.gifts-options {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.gifts-options li {
    margin: 25px;
}

.gifts-options li {
    font-size: 1.54em;
}

.gifts-options li a {
    font-size: 1em;
    color: #0075ff;
}

.gifts-options li.divider {
    width: 2px;
    height: 20px;
    background-color: #205D0E;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
}

.underline {
    text-decoration: underline;
}

.disclosure {
    display: flex;
    flex-flow: column;
    justify-content: space-evenly;
    text-align: center;
}

.disclosure li {
    padding: 10px 0;
}

.confirm-btn {
    background: #E9EDE8;
    color: #000;
    border: #E9EDE8;
}

@media screen and (max-width: 480px) {
    .our-wedding {
        margin-bottom: 0;
        font-size: 1.54em;
    }

    .title {
        font-size: 3em;
    }

    .event-day {
        font-size: 1.54em;
    }

    .symbols {
        top: 15%;
    }

    .disclosure {
        flex-flow: column;
    }
    
    .gifts-options {
        flex-flow: column;
    }
    
    .divider { 
        display: none;
    }
}