:root {
    --pink: #f14e95;
    --bg: #0a0a0a;
    --shadow: 0 2px 2px rgb(0 0 0 / 0.5);
}

body{
    font-size: 1rem;
    font-family: 'Work Sans', sans-serif;
    min-height: 4000px;
}

.hero h4, .hero h1, .hero p{
    text-shadow: var(--shadow);
}

.hero::before{
    content:'';
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(img/pegangan.jpg);
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero {
    position: relative;
    min-height: 100vh;
}


.hero h1{
    font-family: 'sacramento', cursive;
    font-size: 7rem;
}

.hero h4{
    font-size: 1,6rem;
}

.hero p{
    font-size: 1.4;
}

.hero a{
    color: var(--pink);
    background-color: #ffffff;
    box-shadow: var(--shadow);
}

.hero a:hover{
    background-color: var(--pink);
    color: #ffffff;
}

.mynavbar {
    background-color: rgba(255,255 ,255, 0.2) !important;
    backdrop-filter: blur(3px);
}


.mynavbar .navbar-brand, .mynavbar .offcanvas-title {
    font-family: 'sacramento',cursive;
    font-size: 3.2rem;
    font-weight: bold;
}

.mynavbar .nav-link {
    text-transform: uppercase;
    font-weight: bold;
}


.home {
    background-image: url(img/hiasan.png);
    background-size: cover;
    min-height: 100vh;
    margin-top: -6rem;
    padding-top: 15rem;
    padding-bottom: 5rem;
}

.home h2 {
    color: var(--pink);
    font-family: 'sacramento';
    font-size: 5rem;
    font-weight: bold;
}

.home h3{
    color: #444;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.home p {
    font-size: 1.1rem;
    color: #666;
}


.home .couple {
    margin-top: 100px;
}


.home .couple h3 {
    font-family: 'Sacramento';
    font-size: 2.4rem;
    color: var(--pink);
}


.home .couple img{
    width: 100%;
}




/*mediaquery*/
/* extra large */
/*laptop*/
@media (max-width: 992px){
    html{
        font-size: 75%;
    }
    .simply-countdown>.simply-section{
        padding: 70px;
    }
    .hero::before{
        padding: 70px;
    }
}
/*tablet*/
@media (max-width: 768px){
    html{
        font-size: 65%;
    }
    .simply-countdown>.simply-section{
        padding: 60px;
        margin: 5px
    }
    .hero::before{
        padding: 60px;
        margin: 5px
    }
    .mynavbar .nav-link {
        font-size: 2rem;
        text-align: center;
    }
}
/*mobile phone*/
@media (max-width: 576px){
    html{
        font-size: 60%;
    }
    .simply-countdown>.simply-section{
        padding: 45px;
        margin: 3px
    }
    .hero::before{
        padding: 45px;
        margin: 3px
    }
}