@charset "utf-8";

/* CSS Document */

body {
    background-color: #fff;
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    font-weight: lighter;
    line-height: 1.2;
}

a {
    color: #dccc18;
    text-decoration: none;
}

a:hover {
    color: #b3b3b3;
    text-decoration: dotted,
}

.container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 100vh;
    align-items: center;
    justify-items: center;
    /* adjusted */
}

.image {
    background-image: url(/images/beeskow-taxi-bg.jpg;);
    width: 90%;
    height: 80%;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
    display: grid;
    align-items: center;
    justify-items: center;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.text {
    background-color: #fff;
    max-width: 80%;
    min-width: 600px;
    padding: 10px;
    -webkit-box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.56);
    box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.56);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    margin: 30px;
}

.logo {
    background-image: url(/images/logo.png;);
    min-width: 400px;
    min-height: 100px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain 50%;
    background-color: #fff;
}

.content {
    background-color: #222;
    color: #fff;
    font-size: 40;
    padding: 30px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    text-align: center;
}