body{
    margin: 0;
    padding: 0;
    box-sizing:border-box ;
    font-family: "Rubik", serif;
   
}
.container{
   position: relative;
}
#map{
    height: 400px;
    width: 100%;
    z-index: 1;
    /* position: relative; */
/* margin-top: 200px; */
}
header{
    background: url(pattern-bg-desktop.png);
    height: 30vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    padding-bottom: 40px;
}
header input{
    width:30em;
    height: 20px;
    border-radius: 5px;
    border: none;
    padding:10px;
    border-top-right-radius: 0px;
border-bottom-right-radius: 0px;
}
header button{
    height:100%;
    width: 3em;
    padding: 10px;
    background-color: black;
    color: #fff;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
font-weight: 800;

}
section{
display: flex;
margin: auto;
justify-content: center;
align-items: center;
gap: 5%;
padding: 2%;
width: 70%;
height: 70px;
position: absolute;
transform: translateY(-40px);
z-index: 10;
/* top: 12em; */
left: 10%;
background: #fff;
border-radius: 5px;
}
section .ip-address-box{
    padding: 2%;
    border-right: 1px solid #a1a1a1;
    height: 50px;
}
section .ip-address-box:nth-child(4){
    border-right: none;
  
}
section span{
    font-size: 10px;
}
section p{
    word-wrap: break-word;
    font-size: 20px;
}

/* Mobile Responsiveness */
@media screen and (max-width:768px) {
    header input{
        width: 20em;
    }
    section{
        flex-direction: column;
        background-color: #fff;
        height: fit-content;
        text-align: center;
        width: 50%;
        gap: 20px;
        margin-bottom: 10px;
        left: 20%;
    }
    section .ip-address-box{
        border: none;
    }
    section p{
        word-wrap: break-word;
        font-size: 20px;
        line-height: 20px;
    }
}
