@font-face {
    font-family: shaurya;
    src: url(lovey-dovey.regular.otf);
}

html,body{
    font-family: shaurya;
}
.container{
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 200px;
    position: relative;

}
#video{
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    /* z-index: -1; */
}
.bada{
    opacity: 1;  
    transform: scale(1);
    display: flex;
    position: fixed;
    top: 200px;
    justify-content: center; 
    align-items: center;
    background-color: white;
    height: 400px;  
    width: 400px;
    border-radius: 20px;
    flex-direction: column;
    /* left: 50%;
    transform: translateX(-50%); */
    transition: opacity 0.4s ease, transform 0.4s ease;
}
#proposalquestion{
    font-family: Arial, Helvetica, sans-serif;
}
.fade-out {
    opacity: 0;
    transform: scale(0.8);
}

.fade-in {
    opacity: 1;
    transform: scale(1);
}
.saidyes{
    display: none;
    background: white;
    /* position: fixed;
    top: 200px;
    justify-content: center; 
    align-items: center;
    background-color: white;
    height: 400px;  
    width: 400px;
    border-radius: 20px;
    flex-direction: column; */
}
#hearts{
    background-color: white;
    font-size: 75px;
    margin-bottom: 0;
    margin-top: 0;

}
h2{
    color: black;
    background-color: white;
}
#decision{
    display: flex;
    background-color: white;
}
#yes{
    background-color: rgb(255, 64, 140);
    margin-right: 10px;
    border-color: palevioletred;
    font-size: 20px;
    color: white;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 45px;
    border: none;
}
#yes:hover{
    opacity: 0.8;
    cursor: pointer;
    box-shadow: 10px;
}
#yes:active{    
    scale: 0.88;
}
#no{
    background-color: rgb(227, 224, 224);
    margin-right: 10px;
    border-color: rgb(227, 224, 224);
    font-size: 20px;
    color: black;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 30px;
    border: none;
    transition: transform 0.1s ease;
    /* position: absolute; */
}
#decision{
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
}
#shy{
    color: black;
    background-color: white;
}
.emoji{
    /* font-size: 45px; */
    display: flex;
    justify-content: center;
    align-items: center;

}
.finaltext{
    font-size: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    line-height: 1.4;
    align-items: center;
}
#togglemute {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000; /* Ensures it stays on top of the video */
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.8);
    border: 2px solid #ff408c;
    border-radius: 50px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

#togglemute:hover {
    background-color: #ff408c;
    color: white;
}
