
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
 
    height: 100vh;
    display: flex;
    overflow: hidden;
    background-color: #fff4e2;

    justify-content: center;
    align-items: center;
    
}
.container{
    
    position: relative;
    width: 80%;
    height: 100%;
    /* background-color: yellow; */
    font-family: "Archivo", sans-serif;
    
}

.data{
        max-height: 400px;
        margin-top: 50px;
        background-color:white;
        border-radius: 10px;
        height: 400px;
       border: 1px solid #fff; 
       box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
      
}

.data span {
    font-weight: bold;
}
.data ul li{
    list-style: none;
    padding: 10px;
    font-size: 1.2rem;
   
    border-bottom: 1px solid #f0f0f0;
}
.search{
    margin-top: 30px;
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px; */
  
}
.search:hover{
    background-color: #f0f0f0;
    cursor: pointer;

}

.search p{
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
   
}


@media only screen and (min-width: 768px) {
    /* body{
        background-color: red
    } */
    .container {
        width: 700px;
    }
}

