*{
    padding: 0;
    margin: 0;
    font-family: "Rubik", sans-serif;
    box-sizing: border-box;
}
.design{
    background-image: url('/images/pattern-bg-desktop.png');
    background-position: center;
    background-size: cover;
    height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    position: relative;
}
.text{
    display: flex;
    justify-content: center;
    align-items: center;
}
h1{
    text-align: center;
    color: white;
}
input[type='text']{
    width: 48vw;
    height: 6vh;
    font-size: large;
    padding: 20px;  
    border: none;
    outline: none;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}
input[type='submit']{
    width: 6vw;
    height: 6vh;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    background-color: black;
    padding: 5px;
    border: none;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    cursor: pointer;
}

.info{
    width: 80vw;
    min-height: 15vh;
    border-radius: 15px;
    display: flex;
    gap: 10px;
    background-color: white;
    justify-content: space-around;
    align-items: center;
    box-shadow: 8px 8px 20px 0 rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 40%;
    left:50%;
    transform: translate(-50%,-50%);
    padding: 20px;
    z-index: 100;
    
}
.info p{
    color: gray;
    font-size: small;
}
.address, .location, .time, .isp{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.v{
   height: 60px;
   background-color: grey;
    width: 1px;
    display: block;
}
.map{
    height:60vh ;
    z-index: 1;
}


@media (min-width:360px) and (max-width:600px) {

    input[type='text']{
        width: 70vw;
    }
    input[type='submit']{
        width: 10vw;
    }

    .info{
        display: flex;
        flex-direction: column;
        background-color: white;
        justify-content: space-around;
        align-items: center;
        position: absolute;
        top: 60%;
        left: 50%;
        transform: translate(-50%,-70%);

    }
    .v{
        display: none;
    }
}
