/* styles.css 
   Project: 
   Author: 
   Date: 
*/

/*google font*/

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400&family=Montserrat:wght@300;400&display=swap');

/*main css*/


* {
   box-sizing: border-box;
}

img {
   /*width: 100%;*/
   display: block;
}

body {
   background-color: #D4EBED;
   font-family: 'georgia', serif; 
   /*font-family: 'Montserrat', sans-serif;*/
}

/*OVERLAY*/

.overlay {
   position: fixed;
   top: 0px;
   left: 0px;
   z-index: 100;
   width: 100%;
   height: 100%;
   background-color: peachpuff;
   text-align: center;
   background-image: url('../img/background.jpg');
   background-repeat: no-repeat;
}

.overlay img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.enter {
   position: absolute;
   bottom: 30%;
   left: 40%;
   margin-top: 550px;
   z-index: 101;
} 

/*MAIN PAGE*/

.intro {
   text-align: center;
   background-size: cover;
   height: 100vh;
   background-image: url('../img/mainpage.jpg');
   background-size: cover;
   border: 1px solid transparent;
}

.intro h1 {
   margin-top: 300px;
   font-size: 3em;
}

.intro h2 {
   position: relative;
   top: 200px;
}

.intro p {
   font-style: italic;
   font-size: 1.5em;
   margin-top: 100px;
}

/*EVENT*/

.event {
   background-color: lavenderblush;
   border: 2px solid transparent;  
   padding: 5%;
   text-align: center;
}

.bigphoto, .pickanevent {
   max-width: 550px;
   margin: auto;
}

.pickanevent {
   margin: auto;
   display: grid;
   grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.eventoptions {
   position: relative;
   cursor: pointer;
}

.eventoptions img {
   width: 100%;
}

.bigphoto {
   margin-top: 2%;
   position: relative;
}

.bigphoto img {
   width: 100%;
}

.caption {
   position: absolute;
   top: 0;
   right: 0;
   padding-left: 3%;
   padding-right: 3%;
   color: linen;
   font-size: 0.8em;
   background-color: rgba(0, 0, 0, 0.8);
}

/*OUTFIT*/

.pickanoutfit {
   text-align: center;
   width: 80%;
   margin: auto;
   margin-top: 50px;
}

.outfitoptions {
   padding: 2px;
   margin: auto;
   margin-bottom:50px;
   width: 50%;
}

.dress {
   width: 500px;
   display: grid;
   grid-template: columns;
   grid-template-columns: 1fr 1fr 1fr;
}

.dress img {
   width: 100%;
}


.tiara {
   width: 500px;
   display: grid;
   grid-template: columns;
   grid-template-columns: 1fr 1fr 1fr;
}

.tiara img {
   width:100%;
}

.jewel {
   width: 500px;
   display: grid;
   grid-template: columns;
   grid-template-columns: 1fr 1fr 1fr;
}

.jewel img {
   width: 100%;
}

.gloves {
   width: 500px;
   display: grid;
   grid-template: columns;
   grid-template-columns: 1fr 1fr 1fr;
}

.gloves img {
   width: 100%;
}

.pink {
   border:2px dotted pink;
}

/*DATE*/

.pickadate {
   border: solid 2px transparent;
   text-align: center;
   background-color: lavenderblush;
   height: 100vh;
}

.pickadate h1 {
   margin-top: 100px;
}

.dateoptions {
   border: 2px solid transparent;
   background-color: mistyrose;
   display: grid;
   grid-template-columns: 1fr 1fr 1fr;
   grid-gap: 40px;
   padding: 40px;
   width: 800px;
   margin: 10px auto;
   margin-bottom: 100px;
}

.box {
   position: relative;
   border: 1px solid transparent;
   background-color: mintcream;
   width: 100%;
   margin: auto;
}

.box img {
   width: 100%;
}

.description {
   position: absolute;
   bottom: 0px;
   left: 0px;
   width: 100%;
   height: 100%;
   padding: 2%;
   background-color: ivory;
   color: linen;
   font-size: 1.2em;
   padding: 20px;
}

.description p {
   color: peru;
   margin-top: 120px;
   margin-left: 10px;
}


/*FINAL*/

.final {
   text-align: center;
}

.final h1 {
   margin-top: 300px;
}

.final p {
   margin-top: 100px;
   margin-bottom: 200px;
}

/*media query for responsive design */

@media only screen and (max-width: 640px) {


}









