@import url('https://fonts.googleapis.com/css2?family=Otomanopee+One&display=swap');

:root{
    /* --primary-color: #d9376d; */
    --off-white: rgba(255, 255, 255, 0.959);
}

*{
    box-sizing: border-box;
}

body{
     background-color: var(--off-white);
     font-family: 'Otomanopee One', sans-serif;
     background-image: url("dob.jpg");
     background-repeat: no-repeat;
     background-size: contain;
     background-position: center;
     background-position: absolute;
     backdrop-filter: blur(5px);
     background-size: cover;

}

header{
    background-color: var(--primary-color);   
    
    padding: 1rem 1rem;
    /* box-shadow: 0px 0px 5px 0px var(--off-white); */
    text-align: center;   
}

.container{
    max-width: 600px;
    margin: auto;
    padding-top: 1.5rem;   
    color: var(--off-white);

}

.notice{
    /* background-color: var(--off-white);    */
    /* border-radius: 0.3rem; */
    /* box-shadow: 0px 0px 5px 0px var(--off-white); */
    text-align: center;
    color: rgb(228, 231, 22);
    /* padding: 0.6rem; */
}



label{
    display: block;
    margin-bottom: 0.5;
    font-weight: bold;
    padding: 0.5rem;
}

input{
    width: 45%;
    padding: 0.5rem;
}

.form{
    margin: auto;
    text-align: center;
    background-color: var(--primary-color);   
    /* border-radius: 0.3rem; */
    padding: 1.5rem 1rem;
    /* box-shadow: 0px 0px 5px 0px var(--off-white); */
    
}

.button{
    
    max-width: 90%;
    border-radius: 0.5rem;
    background-color: black;
    color: white;
    /* border: 1px solid var(--primary-color); */
    padding: 0.5rem;
    margin-top: 1rem;
    cursor: pointer;
    display: inline-block;
    
    

}

.button:hover{
    background-color: burlywood;
    /* border: 1px solid var(--primary-color); */
    color: var(--primary-color);
    font-weight: bold;

}

.output{
    text-align: center;  
    color:var(--off-white);
    
}

#happy-output-img{
    display: none;
}

#sad-output-img{
    display: none;
}

.break{
    margin-top: 2rem;
}

.footer{
    background-color: var(--primary-color);   
    /* border-radius: 0.3rem; */
    padding: 1.5rem 1rem;
    /* box-shadow: 0px 0px 5px 0px var(--off-white); */
    text-align: center;
   
}

.list-footer{
    display: flex;
    justify-content: center;
    list-style: none;
}

.list-item{
    margin: 0.5rem;
    padding: 0rem 1rem;
}

.list-link{
    text-decoration: none;
    color: var(--off-white);
}

.fa{
    font-size: 1.1rem;
}

