body {

    font-family: 'Courier New', Courier, monospace;
    color: rgba(241, 241, 243, 0.7);

    background: rgba(0,0,255,0.8);

}


.container {

    min-width:300px;

    max-width: 600px;

    margin:30px auto;

    background:rgba(27, 27, 66, 0.8);

    padding:30px;

    text-align:center;

    border-radius:10px;

}


h1 {

    font-size:26px;

}


.passenger-buttons {

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:10px;

    margin:30px 0;

}
.passenger input {
    width: 260px;   
    height: 25px;

}
.destination input {
    width: 260px;
    height: 25px;

}

button {

    color: rgba(241, 241, 243);

    padding:12px;

    font-size:18px;

    background: rgba(0,0,255,0.8);

    cursor:pointer;

}


#selection {

    margin:20px;

    font-weight:bold;

}

#map {
    width: 100%;
    height: 500px;
    margin-top: 30px;
}