*{
    margin: 0;
    padding: 0;
    font-family: 'Alice', serif;
}
body{
    background: linear-gradient(180deg, #ff5666 0%, #fe815c 50%, #725976 100%);
}
.container{
    width: 100%;
    min-height: 100vh;
    padding-left: 8%;
    padding-right: 8%;
    box-sizing: border-box;
    overflow: hidden;
}
.navbar{
    width: 100%;
    display: flex;
    align-items: center;
    /* background-color: #fe815c; */
}
.logo{
    width: 80px;
    cursor: pointer;
    margin: 10px;
    transition: 0.6s ease;
}
.logo:hover{
    transform: skewX(-15deg);
}
.menu-icon{
    width: 30px;
    cursor: pointer;
    display: none;
}
nav{
    flex: 1;
    text-align: right;
}
nav ul li{
    list-style: none;
    display: inline-block;
    margin-left: 50px;
}
nav ul li a{
    /* text-decoration: none; */
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    transition: 0.3s ease;
}
nav ul li a:hover{
    color: #893522;
}
.row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px 0;
}
.col-1{
    flex-basis: 50%;
    position: relative;
    margin-left: 30px;
    margin-right: 20px;
}
.col-1 h1{
    font-size: 50px;
    color: #fff;
    font-weight: 400;
    margin: 20px 0 10px;
    text-align: center;
}
a {
    color:#fff;
}
.col-1 h2{
    font-size: 40px;
    font-style: italic;
    color: #fff;
    font-weight: 100;
    text-align: center;
    margin-bottom: 20px;
}
.col-1 p{
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
}
li{
    color: #fff;
}
button{
    border: 0;
    padding: 12px 10px;
    outline: none;
    background: linear-gradient(#ff5666, #725976);
    color: #fff;
    border-radius: 8px;
    transition: width 0.5s ease;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
button img{
    vertical-align: middle;
}
.rsvp_button{
    width: 180px;
}
.photo_button{
    width: 180px;
}
.nav_button{
    width: 70px;
}
.nav_button img{
    width: 40px;
}
.rsvp_button img{
    width: 30px;
    display: none;
}
.photo_button img{
    width: 40px;
}
.rsvp_button:hover img{
    display: block;
}
.rsvp_button:hover{
    width: 230px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.photo_button:hover{
    width: 230px;
    /* display: flex; */
    align-items: center;
    /* justify-content: space-between; */
    background: linear-gradient(#ff5666, #fe815c);
}
.nav_button:hover{
    background: linear-gradient(#ff5666, #fe815c);
    width: 90px;
}
/* .col-1::after{
    content: '';
    width: 10px;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 8px;
    left: -40px;
} */
.col-2{
    flex-basis: 50%;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    /* border: #fff 1px solid; */
}
.col-2 .invitation{
    width: 90%;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.footer{
    width: 100%;
    text-align: center;
    font-style: italic;
    padding: 20px 0;
    color: #fff;
    bottom: 0;
    left: 0;
}

@media only screen and (max-width: 900px){

    nav{
        text-align: center;
    }
    nav ul li{
        display: block;
        margin: 10px 0;
    }
    nav ul{
        width: 100%;
        position: absolute;
        top: 70px;
        right: 0;
        z-index: 2;
        background: #fe815c;
    }
    .menu-icon{
        display: block;
    }
    #menulist{
        overflow: hidden;
        transition: 0.5s ease;
    }
}

@media only screen and (max-width: 700px){
    .row{
        flex-direction: column;
        margin: 50px 0;
    }
    .col-1, .col-2{
        flex-basis: 100%;
        margin-bottom: 30px;
    }
    .col-2 .invitation{
        width: 70%;
    }

}