body {
    background-color: #EA6348;
  }

  p{
    font-family: 'Roboto', sans-serif;
  }
  
  .container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .center {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  .flex-bottom {
    align-self: flex-end;
  }
  
  .cuppa-tea {
    width: 300px;
    height: auto;
  }
  
  .text {
    font-size: 32pt;
    white-space: nowrap;
  }
  
  .contacts {
    align-self: center;
  }
  
  .contacts > * {
    font-size: 16pt;
    margin: 16px;
  }
  
  a{
      color: #000000;
  }
  a:link:visited {
    text-decoration: none;
    color: #000000;
  }
  a:link {
    text-decoration: none;
    color: #000000
  }
  
  @media (min-width:700px) {
    .container {
      width: 680px;
    }
  }
  
  @media (min-width:800px) {
    .container {
      width: 770px;
    }
  
  }
  
  @media (min-width:1000px) {
    .container {
      width: 970px;
    }
  
  }
  
  @media (min-width:1200px) {
    .container {
      width: 1170px;
    }
  
  }

  .draw-border {
    box-shadow: inset 0 0 0 4px #EA6348;
    color: #000000;
    transition: color 0.25s 0.0833333333s;
    position: relative;
 }
  .draw-border::before, .draw-border::after {
    border: 0 solid transparent;
    box-sizing: border-box;
    content: '';
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    bottom: 0;
    right: 0;
 }
  .draw-border::before {
    border-bottom-width: 4px;
    border-left-width: 4px;
 }
  .draw-border::after {
    border-top-width: 4px;
    border-right-width: 4px;
 }
  .draw-border:hover {
    color: #000000;
 }
  .draw-border:hover::before, .draw-border:hover::after {
    border-color: #000000;
    transition: border-color 0s, width 0.25s, height 0.25s;
    width: 100%;
    height: 100%;
 }
  .draw-border:hover::before {
    transition-delay: 0s, 0s, 0.25s;
 }
  .draw-border:hover::after {
    transition-delay: 0s, 0.25s, 0s;
 }
  .btn {
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1.5;
    font: 700 1.2rem 'Roboto Slab', sans-serif;
    padding: 1em 2em;
    letter-spacing: 0.05rem;
 }
  .btn:focus {
    outline: 2px dotted #55d7dc;
 }