*{
    margin: 0;
    padding: 0;
}
body{
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
}

.hero{
    background-image: url(gambar/2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: top;
    width: 100%;
    min-height: 100vh;
}

.hero-isi{
    width: 100%;
    min-height: 100vh;
    margin: auto;
    text-align: center;
    padding-top: 200px;
}

.hero-isi a{
    font-size: 0.9rem;
    position: relative;
    top: -130px;
    left: -25px;
    text-decoration: none;
    background-color: #c9ceec;
    border: 1px solid rgb(119, 118, 118);
    border-radius: 20px;
    padding: 5px;
}

.hero-isi h3{
    font-family: "Herr Von Muellerhoff", cursive;
    font-size: 2.5rem;
    font-weight: bolder;
    color: #D4AF37;
    text-shadow: 2px 2px 2px black;
    margin-left: -40px;
    margin-top: -95px;
}

.hero-isi img{
    width: 300px;
    margin-top: -45px;
}

.hero-isi h2{
    font-family: "Italianno", cursive;
    font-size: 3rem;
    margin-top: -60px;
}

.hero-isi .dituju{
    border: 2px solid black;
    border-radius: 20px;
    width: 320px;
    margin: auto;
    margin-top: -10px;
    
}

.dituju h4{
    font-size: 0.9rem;
}

.hero-isi p{
    font-size: 0.7rem;
    margin-left: auto;
}


nav{
    width: 100%;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.7);
    margin: auto;
}
nav ul{
    display: flex;
    list-style: none;
    justify-content: right;
}

nav ul li a{
    padding: 0 10px;
}

.sticky{
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.home{
    min-height: 100vh;
    margin: auto;
    padding-top: 40px;
    text-align: center;

}

.home h2, .info h2, .stori h2, .rsvp h2, .gifts h2{
    font-family: "Italianno", cursive;
    font-size: 3rem;
    color: rgb(32, 60, 83);
}

.home .mempelai{
    margin-top: 20px;
}

.mempelai .pria, .mempelai .wanita{
    box-shadow: 0 5px 5px -4px black;
    margin-top: 30px;
    padding-bottom: 10px;
}

.mempelai h3{
    font-size: 2rem;
}

.info{
    margin: auto;
    padding-top: 30px;
    text-align: center;
}

.info .nikah{
    margin: 10px auto;
    width: 350px;
    height: 350px;
    box-sizing: border-box;
    background-image: url(gambar/bingkai-info.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 30px;
}
.nikah img{
    width: 150px;
    margin-bottom: 20px;
}

.stori{
    margin: auto;
    text-align: center;
}

.isi-stori{
    width: 100%;
    box-shadow: 0 0 2ch 5px rgb(221, 44, 44);
    margin-top: 30px;
    padding: 20px 15px;
}

.isi-stori h3{
    font-family: "Italianno", cursive;
    font-size: 3rem;
    margin-bottom: 10px;
}

.isi-stori img{
    border-radius: 20px;
}
.isi-stori h5{
    color: rgb(68, 67, 67);
    margin-bottom: 10px;
}


.rsvp{
    background-color: rgb(161, 231, 236);
    margin: auto;
}
.rsvp h2{
    font-size: 3rem;
}
.rsvp p{
    color: black;
}
.rsvp form label{
    color: black;
}
.rsvp button{
    background-color: rgb(42, 99, 165);
    color: white;
    border: 1px solid rgb(42, 99, 165);
}
.rsvp button:hover{
    background-color: white;
    color: black;
    border: 1px solid white;
}
.rsvp .kotak-komen{
    border: 1px solid #444;
    background-color: #c9ceec;
    height: 300px;
    overflow: auto;
    border-radius: 10px;
    padding: 10px 20px;
}
.rsvp .kotak-komen .komen{
    width: 100%;
    border-bottom: 1px solid #666;
    padding: 0 20px;
}
.rsvp .name-comenter{
    font-size: 1.2rem;
    color: white;
    font-weight: bold;
}
.rsvp .pesan{
    font-size: 1rem;
    color: white;
}
.rsvp .time{
    font-size: 0.8rem;
    color: white;
}

footer{
    padding: 3rem;
    background-color: brown;
    color: white;
}
footer a{
    color: black;
    font-weight: bold;
    text-decoration: none;
}
footer a:hover{
    color: white;
}
footer li{
    list-style: none;
    display: inline;
    margin: 0.5rem;
}
.audio-icon-wrapper{
    width: 4rem;
    height: 4rem;
    font-size: 4rem;
    position: fixed;
    bottom: 2.5rem;
    right: 2rem;
    cursor: pointer;
    color: white;
    opacity: 0.5;
    mix-blend-mode: difference;
    animation: rotasi 4s linear infinite;
    transform-origin: center;
    background-color: red;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 0;
}

/* Animasi */
@keyframes rotasi{
    form{
        transform: rotate(0);
    }
    to{
        transform: rotate(360deg);
    }
}


/* Media Query */
/* Ukuran tablet */
@media (min-width:768px){
    .hero{
        background-size: 50%;
    }
    .hero-isi, .home, nav, .sticky, .info, .stori, .rsvp{
        width: 50%;
    }
}

/* Ukuran mobile */
@media (min-width:576px) And ( max-width:768px){
    .hero{
        background-size: 80%;
    }
    .hero-isi, .home, nav, .sticky, .info, .stori, .rsvp{
        width: 80%;
    }
}