body, html {
    height: 100vh;
    max-height: -webkit-fill-available;
    width: 100vw;
    margin: 0;
    overflow: hidden;
    position: relative;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.5vw;
}

h1{
    font-size: 2.5vw;
    text-align: center;
}

@media (max-width: 800px) {
    body{
        font-size: 5vw;
    }
    h1{
        font-size: 6vw;
    }
}

section {
    position: absolute;
    transition: 0.5s;
}

.content{
    width: 75vw;
    height: 75vh;
    margin: 12vh auto;
    transition: all 0.5s ease-in;
    opacity: 0;
    display: none;
    overflow-y: auto;
}

.active{
    z-index: 1;
    width: 100%;
    height: 100%;
}

.border_bottom, .border_left, .border_right, .border_top{
    z-index: 2;
    border-radius: 25px; 
}

.border_bottom, .border_top{
    height: 80vw;
    width: 80vw;
}
.border_bottom, .border_top, .border_bottom .title, .border_top .title{
    left: 0;
    right: 0;
    margin: 0 auto;
}

.border_left, .border_right{
    top: 0;
    bottom: 0;
    margin: auto 0;
    height: 80vh;
    width: 80vh;
}

.border_bottom{
    bottom: calc(-80vw + 5vh);
}

.border_right{
    right: -75vh;
}

.border_top{
    top: calc(-80vw + 5vh);;
}

.border_left{
    left: -75vh;
}

.title{
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100%;
    align-items: center;
    font-weight: bolder;
    cursor: pointer;
}

.active .title{
    display: none;
}

.active .content{
    display: flex;
    opacity: 1;
}

.border_bottom .title{
    top: 0vw;
    height: 5vh;
}

.border_top .title{
    bottom: 0vw;
    height: 5vh;
}

.border_left .title{
    transform: rotate(-90deg) translate(47%, 0%);
    transform-origin: right top;
    right: 5vh;
    height: 5vh;
}

.border_right .title{
    left: 5vh;
    height: 5vh;
    transform: rotate(90deg) translate(-47%, 0%);
    transform-origin: left top;
}

.border_left .title, .border_right .title{
    top: 0;
    bottom: 0;
    margin: auto 0;
}

/*secctions css*/

#Invitacion .content{
    justify-content: space-between;
    align-items: flex-start;
}

#Invitacion h1, #ComoLlegar h1, #Vestimenta h1{
    margin-block-start: 0;
}

#Invitacion p, #ComoLlegar p, #Vestimenta p{
    margin-bottom: 0px;
}

#Invitacion img{
    height: 58vh;
    max-height: 500px;
    width: auto;
    margin: auto;
    display: block;
}

#Invitacion .col1{
    width: 55%;
}
#Invitacion .col2{
    width: 40%;
    align-self: center;
}

button{
    background: rgb(232, 146, 146);
    border: none;
    border-radius: 15px;
    display: block;
    margin: auto;
    padding: 0.5em;
    font-weight: bold;
    font-size: 1.1vw;
    cursor: pointer;
    transition: all 0.5s;
    animation: pulse 2.5s ease 0s infinite normal forwards;
}
button:hover{
    background: #e7e2e2;
    color: #db0000;
}

.good_res{
    background: #94d9a6;
    animation: none;
}
button:hover{
    background: #94d9a6;
    color: black;
}

#ComoLlegar .content, #Vestimenta .content{
    flex-wrap: wrap;
}

#ComoLlegar h1, #Vestimenta h1{
    width: 100%;
    text-align: center;
}

#ComoLlegar img, #Vestimenta img{
    display: block;
    width: 100%;
    max-width: 30vw;
    margin: auto;
}

iframe {
    margin: auto;
    max-width: 100%;
    max-height: 60%;
}

#ComoLlegar p, #Vestimenta p{
    text-align: center;
    width: 100%;
}

/*scrollbar*/
/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #DBC3E8 #DFE9EB;
  }
  
  /* Chrome, Edge and Safari */
  *::-webkit-scrollbar {
    height: 10px;
    width: 10px;
  }
  *::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: #DFE9EB;
  }
  
  *::-webkit-scrollbar-track:hover {
    background-color: #B8C0C2;
  }
  
  *::-webkit-scrollbar-track:active {
    background-color: #B8C0C2;
  }
  
  *::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #DBC3E8;
  }
  
  *::-webkit-scrollbar-thumb:hover {
    background-color: #C9B3D5;
  }
  
  *::-webkit-scrollbar-thumb:active {
    background-color: #9F8EA8;
  }


@keyframes pulse {
	0% {
		animation-timing-function: ease-out;
		transform: scale(1);
		transform-origin: center center;
	}

	10% {
		animation-timing-function: ease-in;
		transform: scale(0.91);
	}

	17% {
		animation-timing-function: ease-out;
		transform: scale(0.98);
	}

	33% {
		animation-timing-function: ease-in;
		transform: scale(0.87);
	}

	45% {
		animation-timing-function: ease-out;
		transform: scale(1);
	}
}

@media (max-width: 800px) {
    #Invitacion .col1, #Invitacion .col2, #Invitacion h1{
        width: 100%;
    }
    button{
        font-size: 4.5vw;
        margin: 0;
    }
    #Invitacion img{
        height: auto;
        width: 60%;
    }
    #Invitacion .col2 {
        align-self:auto;
    }
    .content {
        margin: 8vh auto;
        flex-wrap: wrap;
        
    }

    #ComoLlegar img, #Vestimenta img{
        max-width: 100%;
    }
}