body {
            font-family: Georgia, Times, 'Times New Roman', serif;
            font-style: oblique;
            font-weight: 900; 
            background-image: url(network\ provider\ .jpg);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            background-repeat: no-repeat;
            padding: 5vw;

             }           
     
        #container {
            width: 390px;
            max-width: 95vw;
            margin: 5vw auto;
            padding: 5vw 4vw;
            border: 1px solid #ccc;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        #phone-number {
            width: 100%;
            height: 30px;
            margin-bottom: 10px;
            align-items: center;
           font-size: 1rem;
        }

        #identify-button {
            width: 50%;
            height: 30px;
            margin-left: 25%;
            background-color: #4CAF50;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
        }
        #identify-button:hover {
            background-color: #3e8e41;
        }
        #result {
            margin-top: 10px;
            font-weight: bold;
            color: rgb(12, 12, 12);
            background-color: transparent;
            font-size: 1rem;
        }

        footer {
            background: transparent;
            color: #141414;
            text-align: center;
            padding: 1.5em;
            margin-top: 2em;
            font-size: 1em;
        }


        @media (max-width: 900px) {
   body{
    padding: 4vw;
    background-color: antiquewhite;
  }
  #container {
        width: 80vw;
        padding: 6vw 4vw;
    }
    footer {
            background: transparent;
            color: #141414;
            text-align: center;
            padding: 1.5em;
            margin-top: 15em;
   }
}

   
@media (max-width: 500px) {
    body{
    padding: 2vw;
    background-color: rgb(128, 108, 20);
 }
 #container {
        width: 98vw;
        min-width: 0;
        padding: 4vw 2vw;
        box-sizing: border-box;
    }
    #phone-number,
    #identify-button {
        font-size: 0.95rem;
        height: 2.2em;
    }
    #result {
        font-size: 0.95rem;
    }
    

footer {
            background: transparent;
            color: #141414;
            text-align: center;
            padding: 1.5em;
            margin-top: 34em;
   }
   }


