*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
  font-family: "Nanum Myeongjo", serif;
  font-weight: 200;
  font-style: normal; 
    
  font-family: "Nanum Myeongjo", serif;
  font-weight: 400;
  font-style: normal;

  font-family: "Nanum Myeongjo", serif;
  font-weight: 700;
  font-style: normal;


}

.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/background2.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 150px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #6ADAF3;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%
}
.text-box{
    width: 90%;
    color: #6ADAF3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 20px;
    color: #fff;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color:#fff;
    border: 1px solid #6ADAF3;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #6ADAF3;
    background: #6ADAF3;
    transition: 1s;
}

nav .fas{
    display: none;
}
@media(max-width: 700px){
    .text-box h1{
        font-size:20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: absolute;
        background: #6ADAF3;
        height: 100vh;
        width: 200px;
        top: 0;
        right:-200;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fas{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
}


/*---------Best Wishes page---------*/

.sub-header{
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/Japan.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
    
}
/*---BEST WISHES---*/
    
    .BESTWISHES{
        width: 80%;
        margin: auto;
        text-align: center;
        padding-top: 100px;
    }
.sub-header h1{
    font-size: 90px;
    font-weight: 600;
}
.sub-header p{
    color:#6ADAF3;
    font-size: 24px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
/*===========DAD JOKES font==========*/
.sub-header p1{
    color:#fff;
    font-size: 24px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.sub-header1{
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/sicily.jpeg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
    
}
/*---BEST WISHES---*/
    
    }
.sub-header1 h1{
    font-size: 90px;
    font-weight: 600;
}
.sub-header1 p{
    color:#6ADAF3;
    font-size: 24px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}



/*===========best wishes==========*/
.best-wishes{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.best-col{
    flex-basis: 48%;
    padding: 30px 2px;
}
.best-col img{
    width: 100%;
}

.best-col h1{
    padding-top: 0;
}
.best-col p{
    padding: 15px 0 25px;
}

.blue-btn{
    border: 1px solid #6ADAF3;
    background: transparent;
    color: #6ADAF3;
}
.blue-btn:hover{
    color: #fff;
}
/*----------balloon code----------*/
/*body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}*/

.birthdayCard {
  position: relative;
  width: 250px;
  height: 350px;
  cursor: pointer;
  transform-style: preserve-3d;
  transform: perspective(2500px);
  transition: 1s;
    bottom: 60%;
    margin: 0 auto; /* centers horizontally */
}

.birthdayCard:hover {
  transform: perspective(2500px) rotate(5deg);
  box-shadow: inset 100px 20px 100px rgba(0, 0, 0, 0.2),
    0 10px 100px rgba(0, 0, 0, 0.5);
}

.birthdayCard:hover .cardFront {
  transform: rotateY(-160deg);
}

.birthdayCard:hover .happy {
  visibility: hidden;
}

.cardFront {
  position: relative;
  background-color: #ec9af5;
  width: 250px;
  height: 350px;
  overflow: hidden;
  transform-origin: left;
  box-shadow: inset 100px 20px 100px rgba(0, 0, 0, 0.2),
    30px 0 50px rgba(0, 0, 0, 0.4);
  transition: 0.6s;
}

.happy {
  text-align: center;
  margin: 30px;
  background-image: linear-gradient(120deg, #ffd856 0%, #f98c6e 100%);
  transition: 0.1s;
}

.balloons {
  position: absolute;
}

.balloon-1,
.balloon-2,
.balloon-3,
.balloon-4 {
  position: absolute;
  width: 85px;
  height: 95px;
  border-radius: 50%;
}

.balloon-1 {
  background-color: rgba(106, 218, 243, 0.7);
  left: -10px;
  top: 50px;
}

.balloon-2 {
  background-color: rgba(147, 230, 147, 0.7);
  left: 50px;
  top: 20px;
}

.balloon-3 {
  background-color: rgba(223, 197, 254, 0.7);
  left: 110px;
  top: 50px;
}

.balloon-4 {
  background-color: rgba(106, 218, 243, 0.7);
  left: 170px;
  top: 50px;
}

.balloon-1::before,
.balloon-2::before,
.balloon-3::before,
.balloon-4::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 155px;
  background-color: #ce68d9;
  top: 95px;
  left: 43px;
}

.balloon-1::after,
.balloon-2::after,
.balloon-3::after,
.balloon-4::after {
  content: "";
  position: absolute;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  top: 94px;
  left: 37px;
}

.balloon-1::after {
  border-bottom: 10px solid #6ADAF3;
}

.balloon-2::after {
  border-bottom: 10px solid #93e693;
}

.balloon-3::after {
  border-bottom: 10px solid #DFC5FE;
}

.balloon-4::after {
  border-bottom: 10px solid #6ADAF3;
}

.cardInside {
  position: absolute;
  background-color: #fff;
  width: 250px;
  height: 350px;
  z-index: -1;
  left: 0;
  top: 0;
  box-shadow: inset 100px 20px 100px rgba(0, 0, 0, 0.2);
}

p {
  
  margin: 40px;
  color: #333;
}

.name {
  position: absolute;
  left: 150px;
  top: 200px;
  color: #333;
}

.back {
  
  color: #333;
  text-align: center;
  margin: 30px;
  outline-color: #333;
  outline-style: dotted;
}
/*---------valentines codes----------*/
.sub-header2{
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/Japan.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header2 h1{
    font-size: 80px;
    font-weight: 500;
    color: #6ADAF3;
}
.sub-header2 p{
    color:#fff;
    font-size: 24px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.container{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    column-gap: 20px;
    max-width: 1300px;
    margin: 30px;
    position: absolute;
    bottom: 12%;
    right: 23%;
}

.container .tenor-gif-embed{
    display: flex;
    max-width: 400px;

}


