@charset "UTF-8";

@font-face {
  font-family: "Graphik-regular";
  src: url("fonts/Graphik-Regular.eot");
  src: url("fonts/Graphik-Regular.eot?#iefix") format("embedded-opentype"),
    url("fonts/Graphik-Regular.woff") format("woff"),
    url("fonts/Graphik-Regular.ttf") format("truetype"),
    url("fonts/Graphik-Regular.svg#Graphik-regular") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Avant-Garde";
  src: url("fonts/ITCAvantGardePro-Bold.eot");
  src: url("fonts/ITCAvantGardePro-Bold.eot?#iefix") format("embedded-opentype"),
    url("fonts/ITCAvantGardePro-Bold.woff") format("woff"),
    url("fonts/ITCAvantGardePro-Bold.ttf") format("truetype"),
    url("fonts/ITCAvantGardePro-Bold.svg#Avant-Garde") format("svg");
  font-weight: normal;
  font-style: normal;
}

body {
  background-color: #a0ce52;
}

a {
  color: black;
}

a:hover,
a:active,
a:visited,
a:focus {
  color: black;
}

.link {
  text-decoration: underline;
}

.btn {
  font: 15px/15px "Graphik-regular", "Helvetica Neue", Helvetica, Arial;
}

#title {
  font: 25px/30px "Avant-Garde", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#signature,
#subtitle {
  font: 15px/15px "Graphik-regular", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  margin-top: 7px;
}

#mainheader {
  margin-top: 15px;
  margin-bottom: 25px;
}

#spacer {
  height: 5vw;
}

.sentencePart {
  font: 15px/15px "Graphik-regular", "Helvetica Neue", Helvetica, Arial;
}

#headpic img {
  width: 100%;
  display: none;
}

#lastTweet {
  font: 18px/20px "Graphik-regular", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  width: 100%;
}

#newTweet {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .bubble {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    background: #fff;
    padding: 20px;
    color: #222;
    border-radius: 15px;
    margin-bottom: 40px;
  }

  .bubble::after {
    content: "";
    display: bock;
    position: absolute;
    left: 100px;
    bottom: -25px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 25px solid #fff;
  }

  .bubble p {
    margin: 10px 0 10px 0;
  }

  #lastTweet {
    height: calc(200px - 15vw);
  }
}

@media (min-width: 768px) {
  .bubble {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    background: #fff;
    padding: 20px;
    color: #222;
    border-radius: 15px;
    margin-right: 20px;
  }

  .bubble::after {
    content: "";
    display: bock;
    position: absolute;

    right: -25px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 25px solid #fff;
  }

  .bubble p {
    margin: 10px 0 10px 0;
  }

  #lastTweet {
    height: calc(150px - 3vw);
  }
}

@media (max-width: 768px) {
  .bubble::after {
    left: 40px;
  }
}

/* white textarea without borders */
textarea:hover,
textarea:focus {
  outline: 0px !important;
  -webkit-appearance: none;
  box-shadow: none !important;
}
textarea {
  border: none;
  overflow: auto;
  outline: none;

  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;

  resize: none; /*remove the resize handle on the bottom right*/
}
