
*,html,body{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   
}
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('taxi-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.8; 
    z-index: -1; 
  }
h1{
    margin-bottom: 15px;
    color: white;
    font-size: 48px;
}
p{
    color: white;
    font-size: 24px;
}
a{
    text-decoration: none;
    color: white;
}