html,

body {
    background-color: black;
    font-family: 'Lato', sans-serif;
    align-items: center;
}

navbar {
    width: 100%;
    background-color: black;
    position:fixed;
    top: 0px;
    border-radius: 0px 0px 0px 10px;
    box-shadow: 0px 2px 5px;
}

h1 {
}

h2 {
}

a {
}

p {
}

footer {
    height:90px;
    color: white;
    background-color: black;
    /* position:fixed;
    bottom: 0px; */
}

.navigationbuttons {
    background-color: black;
    padding: 20px 14px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    transition-duration: 0.4s;
    cursor: pointer;
    color: white;
    border: 2px black;
    border-radius: 0px 0px 0px 10px;
}

.navigationbuttons:hover {
    background-color: #464646;
    color: white;
}

div {
    text-align: center;
}

.start {
    padding-top: 40px;
    padding-bottom: 20px;
    background-color: white;
    color: black;
}

.angebot {
    padding-top: 40px;
    padding-bottom: 20px;
    background-color: black;
    color: white;
}

.team {
    padding-top: 40px;
    padding-bottom: 20px;
    background-color: white;
    color: black;
}

.referenzen {   
    padding-top: 40px;
    padding-bottom: 20px;
    background-color: black;
    color: white;
}

.standort {
    padding-top: 40px;
    padding-bottom: 20px;
    background-color: white;
    color: black;
}

.kontakt {
    padding-top: 40px;
    padding-bottom: 20px;
    background-color: black;
    color: white;
}


.column {
  float: left;
  width: 29%;
  padding-right: 2%;
  padding-left: 2%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}


.container {
  position: relative;
  text-align: center;
}

/* Centered text */
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}