/*Necessary for the responsive design*/
* {
    box-sizing: border-box;
}

.row::after {
    content: "";
    clear: both;
    display: table;
}

[class*="col-"] {
    float: left;
    padding: 15px;
    width:100%;
}


header {
  background-color: #00897b;
  height:20%;
  max-width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 5% 8% rgba(0,0,0,.26);
}

body {
  background:##FFFFFF;
  margin:0 0;
  padding: 0;
  width: 100%;
}

.headWrapper {
  text-align: center;
  color: white;
  font-family: "Roboto";
  height: 100%;
  width: 100%;
}

h1 {
  display: inline-block;
  font-size: 200%;
  margin-top: 10%;
}

.greeting {
  text-align: center;
  margin-top: 35%;
  font-family: "Roboto";
  color: #00897b;
  font-size: 200%;
  clear: both;
}

.buttons {
  margin-top: 20%;
  text-align: center;
  font-size: 400%;
  color: grey;
}

#button-left {
  margin-right: 20%;
  padding: 3%;
  border: solid grey;
  border-radius: 20%;
}

#button-right {
  padding: 3%;
  border: solid grey;
  border-radius: 20%;
}

.foot-wrapper {

  margin-top: 2%;
  margin-bottom: 1.5%;
  margin-right: 1%;
  font-family: "Roboto";
  color: white;
  font-size: 140%;
}

.vendesio {
  margin-left: 0%;
  color: #BDBDBD;
}

a {
  color: white;
  text-decoration: none;
}

footer{
  background-color: #00897b;
  color: black;
  clear: both;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}


/*Desktop*/
@media only screen and (min-width: 768px) {

  /* For desktop:*/
  .col-1 {
    width: 8.33%;
  }
  .col-2 {
    width: 16.66%;
  }
  .col-3 {
    width: 25%;
  }
  .col-4 {
    width: 33.33%;
  }
  .col-5 {
    width: 41.66%;
  }
  .col-6 {
    width: 50%;
  }
  .col-7 {
    width: 58.33%;
  }
  .col-8 {
    width: 66.66%;
  }
  .col-9 {
    width: 75%;
  }
  .col-10 {
    width: 83.33%;
  }
  .col-11 {
    width: 91.66%;
  }
  .col-12 {
    width: 100%;
  }

  header {
    background-color: #00897b;
    height:20%;
    max-width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 5% 8% rgba(0,0,0,.26);
  }

  body {
    background:##FFFFFF;
    margin:0 0;
    padding: 0;
    width: 100%;
  }

  .headWrapper {
    text-align: center;
    color: white;
    font-family: "Roboto";
    height: 100%;
    width: 100%;
  }

  h1 {
    display: inline-block;
    font-size: 200%;
    margin-top: 3.5%;
  }

  .greeting {
    text-align: center;
    margin-top: 15%;
    font-family: "Roboto";
    color: #00897b;
    font-size: 200%;
    clear: both;
  }

  .buttons {
    margin-top: 7%;
    text-align: center;
    font-size: 400%;
    color: grey;
  }

  #button-left {
    margin-right: 10%;
    padding: 3%;
    border: solid grey;
    border-radius: 20%;
  }

  #button-right {
    padding: 3%;
    border: solid grey;
    border-radius: 20%;
  }

  .foot-wrapper {
    float: right;
    margin-top: 1%;
    margin-bottom: 1%;
    margin-right: 1%;
    font-family: "Roboto";
    color: white;
    font-size: 140%;
  }

  .vendesio {
    margin-left: 0%;
    color: #BDBDBD;
  }

  a {
    color: white;
    text-decoration: none;
  }

  footer{
    background-color: #00897b;
    color: black;
    clear: both;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
  }


}
