body{
    padding: 0;
    margin: 0;
    background-color: white;
    background-image: url(images/55569.png);
    font-family: arial;
    background-repeat: no-repeat;
    background-size: cover;
}
header{
    width: 100%;
    text-align:center;
    background-color:rgba(32, 32, 33, 0.5);
    padding:10px;
    margin-bottom:15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight:bold;
    font-size: 10px;
    color: white;
    text-shadow: 5px 5px 5px rgb(19, 1, 1) ;
}
form{
    background-color: rgb(255, 255, 255,0.2);
    padding: 30px;
    width: 80%;
    margin: auto;
    border-radius: 20px;
}
h2{
    font-size: 16px;
    font-weight: bold;
    color: rgb(246, 246, 246);
    text-shadow: 2px 1px 5px rgb(7, 7, 7);
}
label{
   display: flex;
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: bold;
    font-size: 15px;
    color: rgb(238, 240, 242);
    text-shadow: 2px 1px 5px rgb(7, 7, 7);

}
input,textarea{
    width: 95%;
    padding: 10px;
    outline: none;
    border-radius: 10px;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
    border: none;
    font-family: Arial, Helvetica, sans-serif;
}
button{

    background-color: rgb(10, 72, 179);
    width: 80%;
    padding: 10px;
    border: none;
    border-radius: 10px;
    color: white;
    margin-top: 10px;
    margin-left: 10%;
}
button:hover{
    background-color: rgb(2, 4, 68);
    cursor: pointer;
}
footer{
    text-align: center;
    font-family: 'Times New Roman';
    font-style: italic;
    font-size: 10px;
    display: fixed;
    color: rgb(15, 15, 15);
    position: relative;
    width: 80%;
}
/*Reported list*/
.list-container{
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
}
.missing-card img{
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 15px;
}
.missing-card div,img{
    flex: 1; 
    background-color: white;
    box-shadow:rgb(38, 57, 77) 0px 20px 30px -10px;
    border-radius: 15px;
    text-align: center;
    padding: 5px;
    margin: 10px;
}
.missing-card:hover {
    transform: scale(1.02);
    transition: 0.3s;
    color: rgb(3, 3, 3);
}
.missing-card p{
    margin: 5px 0;
}
/*Responsive Web design*/
@media (max-width: 600px){
    .missing-card{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .missing-card img{
        margin-bottom: 10px;
    }
}
/*For mobile devices*/
@media (min-width:1024px){

    form{
    background-color: rgb(255, 255, 255,0.2);
    padding: 30px;
    width: 50%;
    margin: auto;
    border-radius: 20px;
}

    .missing-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-left: 10%;
        width: 82%;
        
    }

    .missing-card img {
        margin-bottom: 6px;
    }
    h2{
        text-align: center;
    }
}


