* {
    font-family:'Roboto',sans-serif;
    font-size: x-large;
}


body {
    margin-left: 1em;
    margin-top: 1em;
}

h1 {
    font-family:'Roboto',sans-serif;
    font-weight:500;
    font-size: 200%;
}

a.button1 { 
    display:inline-block;
    padding:0.3em 1.2em;
    margin:0 0.3em 0.3em 0;
    border-radius:2em;
    box-sizing: border-box;
    font-size: 180%;
    text-decoration:none;
    font-family:'Roboto',sans-serif;
    font-weight:350;
    color:#FFFFFF;
    background-color:#4eb5f1;
    text-align:center;
    transition: all 0.2s;
}

.button1:hover {
    background-color:#4095c6;
}

@media all and (max-width:30em) {
    a.button1 {
        display:block;
        margin:0.2em auto;
    }
} 


#wrapper {
    width: 600px;
    overflow: hidden;
}

#text {
    margin-left: 5em;
    overflow: hidden;
}

html {
    height: 100%;
    background: -webkit-linear-gradient(lightblue, snow 90%);
  }


#bottomRight {
    position: fixed;
    bottom: 20px;
    right: 20px;
}


/* CSS stopsign courtesy of Dylan Macnab (https://twitter.com/DylanMacnab) */

#octagon {
    width: 100px;
    height: 40px;
    background: red;
    position: relative;
  }
  
  #octagon:before {
    content: "";
    position: absolute;
    top: -30px;
    width: 40px;
    height: 0;
    border-bottom: 30px solid red;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
  }
  
  #octagon:after {
    content: "";
    position: absolute;
    bottom: -30px;
    width: 40px;
    height: 0px;
    border-top: 30px solid red;
    border-right: 30px solid transparent;
    border-left: 30px solid transparent;
  }
  
  #octagon p {
    color: white;
    font-family: helvetica;
    font-size: 30px;
    line-height: 42px;
    text-align: center;
    font-weight: bold;
    text-shadow: 0 -1px 0 darkred;
  }
  
  #post {
    height: 200px;
    width: 10px;
    background: -webkit-linear-gradient(right,lightgrey, grey);
    margin: 30px 45px;
  }
  
  #sign {
    position: relative;
    float: left;
  }
  
  /* end stopsign */
