@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap');
/* font name : rubik , weights 400 500 700 */

:root{
    --font1 : Rubik;
    --VeryDarkGray: hsl(0, 0%, 17%);
    --DarkGray: hsl(0, 0%, 59%);
}
html{
    height: 100%;
}
body{
    font-family: var(--font1);
    margin: 0px;
    display: flex;
    flex-flow: column;
    height: 100%;
}
header{
    background: url(images/pattern-bg.png) no-repeat;
    background-size: cover;
    color: rgba(255, 255, 255, 0.958);
    text-align: center;
    min-height: 250px;
    box-sizing: border-box;
    padding: 2em;
}
h1{
    margin: 0px;
    font-weight: 500;
}
input{
    width: 70%;
    max-width: 400px;
    margin-top: 2em;
    height: 3em;
    box-sizing: border-box;
    border-radius: 10px;
    padding-left: 1.5em;
    font-family: var(--font1);
}
input:focus{
    outline: none;
}
button{
    height: 3em;
    background-color: var(--VeryDarkGray);
    width: 3.2em;
    box-sizing: border-box;
    margin-left: -1.5em;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
button:hover{
    cursor: pointer;
}
::placeholder{
    color: var(--DarkGray);
    font-family: var(--font1);
}
img{
    line-height: 3em;
}

.container{ 
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 1000px;
    margin-top: -4.5em;
    background-color: white;
    border: 1px solid black;
    border-radius: 15px;
    padding: 1em;
    box-sizing: border-box;
}
.all-container{
    display: flex;
    justify-content: center;
    position: absolute;
    top: 250px;
    width: 100%;
}
.detail{
    width: 25%;
    border-right: 1px solid var(--DarkGray);
    padding-left: 1em;
}
.isp{
    border-right: none;
}
h2{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--DarkGray);
}
h3{
    font-weight: 500;
}
#premap{
    height: 100%;
}
#map { 
    height: 100%;
    z-index: -2;
 }


@media screen and (width<600px) {
    header{
        min-height: 350px;
    }
    .container{
        flex-direction: column;
        text-align: center;
        width: 80%;
      
    }
    .detail{
        width: 100%;
        padding-left: 0px;
        border: none;
    }
    h2,h3{
        margin: 5px;
    }
    h3{
        margin-bottom: 15px;
    }
    #map{
        height: 80vh;
    }
}